From d788f6688c5ef80a115fd13be4cf40ee16a85389 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 26 Mar 2010 09:45:03 +0800 Subject: debug.c: fix no-color-printing in case .color = NULL --- src/debug.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/debug.c b/src/debug.c index 934f2292..d10861f8 100644 --- a/src/debug.c +++ b/src/debug.c @@ -115,7 +115,7 @@ static const char* color(int subsys) return debug_info->cat[i].color; } - return ""; + return NULL; } static void _output(struct debug_target *target, unsigned int subsys, @@ -136,8 +136,11 @@ static void _output(struct debug_target *target, unsigned int subsys, /* are we using color */ if (target->use_color) { - snprintf(col, sizeof(col), "%s", color(subsys)); - col[sizeof(col)-1] = '\0'; + const char *c = color(subsys); + if (c) { + snprintf(col, sizeof(col), "%s", color(subsys)); + col[sizeof(col)-1] = '\0'; + } } vsnprintf(buf, sizeof(buf), format, ap); buf[sizeof(buf)-1] = '\0'; -- cgit v1.2.3