[Asterisk-code-review] Fix processing of asterisk.conf debug=yes. (asterisk[master])
Corey Farrell
asteriskteam at digium.com
Tue May 12 01:51:08 CDT 2015
Corey Farrell has uploaded a new change for review.
https://gerrit.asterisk.org/439
Change subject: Fix processing of asterisk.conf debug=yes.
......................................................................
Fix processing of asterisk.conf debug=yes.
The code which reads asterisk.conf supports processing the debug
option with ast_true, but ast_true returns -1. Convert to 1.
ASTERISK-25042
Reported by: Corey Farrell
Change-Id: I3c898b7d082d914b057e111b9357fde46bad9ed6
---
M main/asterisk.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/39/439/1
diff --git a/main/asterisk.c b/main/asterisk.c
index d48546e..f4a163b 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -3498,7 +3498,7 @@
} 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;
}
} else if (!strcasecmp(v->name, "refdebug")) {
ast_set2_flag(&ast_options, ast_true(v->value), AST_OPT_FLAG_REF_DEBUG);
--
To view, visit https://gerrit.asterisk.org/439
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3c898b7d082d914b057e111b9357fde46bad9ed6
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Corey Farrell <git at cfware.com>
More information about the asterisk-code-review
mailing list