From cf4d7737bb198af008c076a02d85acc22b380ef9 Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 6 Mar 2013 12:24:12 +0100 Subject: [PATCH] More specific error message in loadServerConfigFromString(). --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 285a3f8d..521e60b1 100644 --- a/src/config.c +++ b/src/config.c @@ -74,7 +74,7 @@ void loadServerConfigFromString(char *config) { /* Split into arguments */ argv = sdssplitargs(lines[i],&argc); if (argv == NULL) { - err = "can't parse this line"; + err = "Unbalanced quotes in configuration line"; goto loaderr; } sdstolower(argv[0]);