]> code.citadel.org Git - citadel.git/blobdiff - citadel/citserver.c
* Updated citmail.c with the latest stuff from the production system.
[citadel.git] / citadel / citserver.c
index a61e09ffa41f8b0cb99f5f6014478e9bdcb71029..3c6d61dfde7dac925ea47956b7b29f4003feaede 100644 (file)
@@ -1053,33 +1053,41 @@ void *context_loop(struct CitContext *con)
                else if (!strncasecmp(cmdbuf, "UIMG", 4)) {
                        cmd_uimg(&cmdbuf[5]);
                        }
+
                else if (!strncasecmp(cmdbuf, "UCHG", 4)) {
                        cmd_uchg(&cmdbuf[5]);
                        }
+
                else if (!strncasecmp(cmdbuf, "TIME", 4)) {
                        cmd_time(&cmdbuf[5]);
                        }
+
                else if (!strncasecmp(cmdbuf, "HCHG", 4)) {
                        cmd_hchg(&cmdbuf[5]);
                        }
+
                else if (!strncasecmp(cmdbuf, "RCHG", 4)) {
                        cmd_rchg(&cmdbuf[5]);
                        }
+
                else if (!strncasecmp(cmdbuf, "EXTN", 4)) {
                        cmd_extn(&cmdbuf[5]);
                        }
+
                else if (!strncasecmp(cmdbuf, "AGUP", 4)) {
                        cmd_agup(&cmdbuf[5]);
                        }
+
                else if (!strncasecmp(cmdbuf, "ASUP", 4)) {
                        cmd_asup(&cmdbuf[5]);
                        }
+
                else {
                        cprintf("%d Unrecognized or unsupported command.\n",
                                ERROR);
                        }
 
-               } while(strncasecmp(cmdbuf,"QUIT",4));
+               } while(strncasecmp(cmdbuf, "QUIT", 4));
 
        cleanup(EXIT_NORMAL);
        return(NULL);