]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix processing of asterisk.conf debug=yes. 37/437/2
authorCorey Farrell <git@cfware.com>
Tue, 12 May 2015 06:31:58 +0000 (02:31 -0400)
committerCorey Farrell <git@cfware.com>
Tue, 12 May 2015 14:34:01 +0000 (10:34 -0400)
The code which reads asterisk.conf supports processing the debug
option with ast_true, but ast_true returns -1.  This causes debug
to still be off, convert to 1 so debug will be on as requested.

ASTERISK-25042
Reported by: Corey Farrell

Change-Id: I3c898b7d082d914b057e111b9357fde46bad9ed6

main/asterisk.c

index ea01118ba1c439a367042d3f31a580bd9c81a6bd..ba5ac18641b58b58d3e75bde56a89b1860c93b46 100644 (file)
@@ -3350,7 +3350,7 @@ static void ast_readconfig(void)
                } else if (!strcasecmp(v->name, "debug")) {
                        option_debug = 0;
                        if (sscanf(v->value, "%30d", &option_debug) != 1) {
-                               option_debug = ast_true(v->value);
+                               option_debug = ast_true(v->value) ? 1 : 0;
                        }
 #if HAVE_WORKING_FORK
                /* Disable forking (-f at startup) */