* Cosmetic changes to comments
authorArt Cancro <ajc@citadel.org>
Fri, 15 Nov 2002 04:23:26 +0000 (04:23 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 15 Nov 2002 04:23:26 +0000 (04:23 +0000)
webcit/calendar_view.c

index c2bcab35e41f98035925728ca4e3725ed6723a72..f8c7e1dd53217778de3a57353c73115565f44de6 100644 (file)
@@ -129,8 +129,6 @@ void calendar_month_view(int year, int month, int day) {
        /* Determine previous and next months ... for links */
        previous_month = thetime - (time_t)864000L;     /* back 10 days */
        next_month = thetime + (time_t)(31L * 86400L);  /* ahead 31 days */
-       lprintf(9, "previous month is %s", asctime(localtime(&previous_month)));
-       lprintf(9, "next month is %s", asctime(localtime(&next_month)));
 
        /* Now back up until we're on a Sunday */
        tm = localtime(&thetime);