Working on the header crash sieve bug
authorArt Cancro <ajc@citadel.org>
Fri, 31 Oct 2008 02:19:32 +0000 (02:19 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 31 Oct 2008 02:19:32 +0000 (02:19 +0000)
citadel/sysdep.c

index be5ca2b9498be56e4e431cd3da0d5806d3476519..d79785a5a5ebebf1d9dc93473ec9dce08f9eafdc 100644 (file)
@@ -713,7 +713,7 @@ int client_write(char *buf, int nbytes)
  */
 void cprintf(const char *format, ...) {   
        va_list arg_ptr;   
-       char buf[1024];   
+       char buf[1024];
    
        va_start(arg_ptr, format);   
        if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)