From: Art Cancro Date: Sun, 5 Jan 2003 20:56:05 +0000 (+0000) Subject: * minor fix for previous checkin X-Git-Tag: v7.86~6055 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=600cc7e8507d4d6bdc61bd9fa35be210654ea8a0 * minor fix for previous checkin --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index d296691cb..aa86f3841 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 400.77 2003/01/05 20:56:05 ajc +* minor fix for previous checkin + Revision 400.76 2003/01/05 20:51:01 ajc * Display PARTSTAT for attendees @@ -1217,3 +1220,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/calendar_tools.c b/webcit/calendar_tools.c index 85c348ce0..154f43e03 100644 --- a/webcit/calendar_tools.c +++ b/webcit/calendar_tools.c @@ -199,22 +199,31 @@ void partstat_as_string(char *buf, icalproperty *attendee) { switch(partstat) { case ICAL_PARTSTAT_X: strcpy(buf, "(x)"); + break; case ICAL_PARTSTAT_NEEDSACTION: strcpy(buf, "(needs action)"); + break; case ICAL_PARTSTAT_ACCEPTED: strcpy(buf, "(accepted)"); + break; case ICAL_PARTSTAT_DECLINED: strcpy(buf, "(declined)"); + break; case ICAL_PARTSTAT_TENTATIVE: strcpy(buf, "(tenative)"); + break; case ICAL_PARTSTAT_DELEGATED: strcpy(buf, "(delegated)"); + break; case ICAL_PARTSTAT_COMPLETED: strcpy(buf, "(completed)"); + break; case ICAL_PARTSTAT_INPROCESS: strcpy(buf, "(in process)"); + break; case ICAL_PARTSTAT_NONE: strcpy(buf, "(none)"); + break; } }