>From ba2a7392bd3a18731f163e93c02e129dbd6fba2f Mon Sep 17 00:00:00 2001 From: Tsukasa Hamano Date: Thu, 6 Dec 2012 13:01:33 -0800 Subject: [PATCH] Fix bug #9471 - SEGV when using second vfs module. Don't use default_classname_table when we obviously shoud be using classname_table. Reviewed by: Jeremy Allison --- lib/util/debug.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/util/debug.c b/lib/util/debug.c index 15a2452b..7509f90 100644 --- a/lib/util/debug.c +++ b/lib/util/debug.c @@ -1007,7 +1007,7 @@ bool dbghdrclass(int level, int cls, const char *location, const char *func) slprintf(header_str + hs_len, sizeof(header_str) -1 - hs_len, ", class=%s", - default_classname_table[cls]); + classname_table[cls]); } /* Print it all out at once to prevent split syslog output. */ -- 1.7.7.3