Handle start and end times together
[citadel.git] / webcit-ng / server / forum_view.c
index 89303256aa0a83bbacd8c1925099bd4a0bf83abb..a0753652c39eb26196ce3d2ebcf6c6f8b6cc358b 100644 (file)
@@ -123,7 +123,7 @@ void json_render_one_message(struct http_transaction *h, struct ctdlsession *c,
 
        if (!strcmp(buf, "text")) {
                while ((ctdl_readline(c, buf, sizeof(buf)) >= 0) && (strcmp(buf, "")) && (strcmp(buf, "000"))) {
-                       // rfc822 header parsing here
+                       // RFC822 header parsing here
                        if (!strncasecmp(buf, "Content-transfer-encoding:", 26)) {
                                strcpy(content_transfer_encoding, &buf[26]);
                                string_trim(content_transfer_encoding);