From 1fe7d25c8d51a5798e29981f89d32a931f94a13e Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Mon, 20 Aug 2012 15:28:50 +0200 Subject: [PATCH] core: fix quote used in /help option for values (type integer with strings) --- src/core/wee-command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/wee-command.c b/src/core/wee-command.c index d9ef42458..0b84ab7b9 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -2093,9 +2093,9 @@ COMMAND_CALLBACK(help) i = 0; while (ptr_option->string_values[i]) { - strcat (string, "'"); + strcat (string, "\""); strcat (string, ptr_option->string_values[i]); - strcat (string, "'"); + strcat (string, "\""); if (ptr_option->string_values[i + 1]) strcat (string, ", "); i++;