Handle start and end times together
[citadel.git] / webcit-ng / server / ctdlfunctions.c
index 407d153409e466ae1b75c1cdd079ba8a9479417c..ca3886a35ead44cb9f894f1e2273c0341c45ff82 100644 (file)
@@ -20,8 +20,7 @@ void ctdl_delete_msgs(struct ctdlsession *c, long *msgnums, int num_msgs) {
        strcpy(buf, "DELE ");
        do {
                sprintf(&buf[strlen(buf)], "%ld", msgnums[i]);
-               if ((((i + 1) % 50) == 0) || (i == num_msgs - 1))       // delete up to 50 messages with one server command
-               {
+               if ((((i + 1) % 50) == 0) || (i == num_msgs - 1)) {     // delete up to 50 messages with one server command
                        syslog(LOG_DEBUG, "%s", buf);
                        ctdl_printf(c, "%s", buf);
                        ctdl_readline(c, buf, sizeof(buf));