* minor fix for previous checkin
authorArt Cancro <ajc@citadel.org>
Sun, 5 Jan 2003 20:56:05 +0000 (20:56 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 5 Jan 2003 20:56:05 +0000 (20:56 +0000)
webcit/ChangeLog
webcit/calendar_tools.c

index d296691cb59c01f99ef1c5d0c4c17dd517d5e2aa..aa86f38411273064feeb1863bdebbf91baac6d9b 100644 (file)
@@ -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 <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 85c348ce00f9e6381303f0f002220640267102f0..154f43e03cf5f093917a3877c119094118c21655 100644 (file)
@@ -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;
        }
 }