]> git.sur5r.net Git - openldap/commitdiff
Fix previous commit, "data" disappeared...
authorHoward Chu <hyc@openldap.org>
Fri, 26 Jul 2002 03:14:13 +0000 (03:14 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 26 Jul 2002 03:14:13 +0000 (03:14 +0000)
libraries/liblber/debug.c

index 044b9795a3eaab5adf25e09eb64c95f0fc97dd84..8d182d83f26ded57b6ec693c80fbf901cf9b5991 100644 (file)
@@ -167,6 +167,7 @@ void lutil_log_int(
 #ifdef HAVE_VSYSLOG
                vsyslog( debug2syslog(level), fmt, vl );
 #else
+               char data[4096];
                vsnprintf( data, sizeof(data), fmt, vl );
                syslog( debug2syslog(level), data );
 #endif