]> code.citadel.org Git - citadel.git/commitdiff
sysdep.c: put a bigger string buffer into lprintf() to avoid overruns
authorArt Cancro <ajc@citadel.org>
Thu, 31 Dec 1998 01:11:28 +0000 (01:11 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 31 Dec 1998 01:11:28 +0000 (01:11 +0000)
citadel/ChangeLog
citadel/sysdep.c

index c9d5aa7c0bef9ab8d68c108ef4a978fc6d82cdc1..564e01f58823e1b81f19c9e0c0955b5540548cc6 100644 (file)
@@ -1,3 +1,6 @@
+Wed Dec 30 20:10:52 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * sysdep.c: put a bigger string buffer into lprintf() to avoid overruns
+
 Sat Dec 26 16:56:46 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * internetmail.config: commented this file more clearly
 
index 49ef19c868f64ac6568871ae6384c2fc30334b14..02a5f826d23121368188db669cf7533612184751 100644 (file)
@@ -66,7 +66,7 @@ struct CitContext masterCC;
  */
 void lprintf(int loglevel, const char *format, ...) {   
         va_list arg_ptr;
-       char buf[256];
+       char buf[512];
   
         va_start(arg_ptr, format);   
         vsprintf(buf, format, arg_ptr);