* In the calendar code, changed all "struct tm *" to "struct tm" and changed
authorArt Cancro <ajc@citadel.org>
Wed, 18 Dec 2002 05:03:39 +0000 (05:03 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 18 Dec 2002 05:03:39 +0000 (05:03 +0000)
commit0815d0efe22b13e16222e8f22acde8fffdcbd737
treec87b9aae74b714157077e50979b4f872ad0ddfbe
parentca33f7046495533f8f17cef5038b3460ab4f9277
* In the calendar code, changed all "struct tm *" to "struct tm" and changed
  all "tm = localtime(foo)" to "memcpy(&tm, localtime(foo), sizeof(struct tm))"
  Because the libc-allocated buffer was getting clobbered.
* This fixes the problem fleeb reported with Feb 1 events making it go nuts.
webcit/ChangeLog
webcit/calendar_tools.c
webcit/calendar_view.c