From 6dbacc71c7a9bcea220801e877e46ee2916a1759 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Fri, 21 Jul 2006 17:20:38 +0000 Subject: Make getBoolConfigParam and save_absolute_paths_in_playlist less stupid git-svn-id: https://svn.musicpd.org/mpd/trunk@4419 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conf.c') diff --git a/src/conf.c b/src/conf.c index 2a5ea9e5f..2a0ab2077 100644 --- a/src/conf.c +++ b/src/conf.c @@ -372,7 +372,7 @@ int getBoolConfigParam(char *name) if (strcmp("yes", param->value) == 0) return 1; else if (strcmp("no", param->value) == 0) return 0; - return -1; + return -2; } BlockParam *getBlockParam(ConfigParam * param, char *name) -- cgit v1.2.3