]> code.citadel.org Git - citadel.git/blobdiff - citadel/context.h
Fix race condition that caused segfaults in imap and xmpp as seen on
[citadel.git] / citadel / context.h
index 24cfc6861a586b4a5eb7226062e88fba57277d48..b8e48c42ab90c58a141f79dae37d59b454af6463 100644 (file)
@@ -126,7 +126,8 @@ typedef struct CitContext CitContext;
  */
 enum {
        CON_IDLE,               /* This context is doing nothing */
-       CON_STARTING,           /* This context needs the greeting outputting */
+       CON_GREETING,           /* This context needs to output its greeting */
+       CON_STARTING,           /* This context is outputting its greeting */
        CON_READY,              /* This context needs attention */
        CON_EXECUTING           /* This context is bound to a thread */
 };