summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-07-30 09:22:59 +0000
committerMichael Adam <obnox@samba.org>2014-07-31 18:49:47 +0200
commit8792de7a16239214bf0863182ee5f1d85d89982c (patch)
treef175583672df91479d4129b3c19a1188aa9063c3 /lib
parent06a0b1c85150d68bcbb6d6f81a66bf3976e0223e (diff)
downloadsamba-8792de7a16239214bf0863182ee5f1d85d89982c.tar.gz
debug: Increase maximum header length
With function names it can become quite long Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/util/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/debug.c b/lib/util/debug.c
index cd2c6088056..99ce441526b 100644
--- a/lib/util/debug.c
+++ b/lib/util/debug.c
@@ -954,7 +954,7 @@ bool dbghdrclass(int level, int cls, const char *location, const char *func)
/* Ensure we don't lose any real errno value. */
int old_errno = errno;
bool verbose = false;
- char header_str[200];
+ char header_str[300];
size_t hs_len;
struct timeval tv;
struct timeval_buf tvbuf;