mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 03:48:02 +00:00
Made the on/off in CLI "cdr set debug [on|off]" case insensitive.
........ Merged revisions 397898 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@397899 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3573,10 +3573,12 @@ static char *handle_cli_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_a
|
||||
return CLI_SHOWUSAGE;
|
||||
}
|
||||
|
||||
if (!strcmp(a->argv[3], "on") && !ast_test_flag(&mod_cfg->general->settings, CDR_DEBUG)) {
|
||||
if (!strcasecmp(a->argv[3], "on")
|
||||
&& !ast_test_flag(&mod_cfg->general->settings, CDR_DEBUG)) {
|
||||
ast_set_flag(&mod_cfg->general->settings, CDR_DEBUG);
|
||||
ast_cli(a->fd, "CDR debugging enabled\n");
|
||||
} else if (!strcmp(a->argv[3], "off") && ast_test_flag(&mod_cfg->general->settings, CDR_DEBUG)) {
|
||||
} else if (!strcasecmp(a->argv[3], "off")
|
||||
&& ast_test_flag(&mod_cfg->general->settings, CDR_DEBUG)) {
|
||||
ast_clear_flag(&mod_cfg->general->settings, CDR_DEBUG);
|
||||
ast_cli(a->fd, "CDR debugging disabled\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user