]> code.citadel.org Git - citadel.git/blobdiff - webcit/webcit.c
* Completed support for add/remove mailing list recipients.
[citadel.git] / webcit / webcit.c
index 0fd9569942ae5f049c91098e26af4b4c843a13a7..8aa27b7ca02b7f8ba8e48f0e339f47f8b1e80164 100644 (file)
@@ -237,13 +237,13 @@ void escputs(char *strbuf)
 
 /*
  * Escape a string for feeding out as a URL.
- * FIXME this is not threadsafe!
+ * FIXME ... not threadsafe!
  */
 char *urlesc(char *strbuf)
 {
        int a, b, c;
        char *ec = " #&;`'|*?-~<>^()[]{}$\\";
-       static char outbuf[1024];
+       static char outbuf[SIZ];
 
        strcpy(outbuf, "");