]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
afsi_log-buffer-20040301
authorJeffrey Altman <jaltman@mit.edu>
Tue, 2 Mar 2004 04:09:32 +0000 (04:09 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 2 Mar 2004 04:09:32 +0000 (04:09 +0000)
Increase the size of the final buffer to be large enough
to hold all of the data which is being written to it.

src/WINNT/afsd/afsd_init.c

index 03c21548e7c8c2078f91c1a73dc06432f562330c..f8e7c046a5b9a192b2bda9ed3dd7cc1cbd9335d0 100644 (file)
@@ -127,7 +127,7 @@ static int afsi_log_useTimestamp = 1;
 void
 afsi_log(char *pattern, ...)
 {
-       char s[100], t[100], d[100], u[100];
+       char s[100], t[100], d[100], u[300];
        int zilch;
        va_list ap;
        va_start(ap, pattern);