From 1c8ecac9d9d04e97b7f464391370b1d52ceb1e70 Mon Sep 17 00:00:00 2001 From: Christophe Varoqui Date: Wed, 19 Nov 2008 23:26:59 +0100 Subject: [PATCH] [lib] fix quote doubling when using "show conf" --- libmultipath/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmultipath/print.c b/libmultipath/print.c index 8b61f18..31af478 100644 --- a/libmultipath/print.c +++ b/libmultipath/print.c @@ -834,7 +834,7 @@ snprint_hwentry (char * buff, int len, struct hwentry * hwe) if (fwd > len) return len; iterate_sub_keywords(rootkw, kw, i) { - fwd += snprint_keyword(buff + fwd, len - fwd, "\t\t%k \"%v\"\n", + fwd += snprint_keyword(buff + fwd, len - fwd, "\t\t%k %v\n", kw, hwe); if (fwd > len) return len; -- 2.7.4