mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-09 03:18:30 +00:00
Made the on/off in CLI "cdr set debug [on|off]" case insensitive.
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@397898 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;
|
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_set_flag(&mod_cfg->general->settings, CDR_DEBUG);
|
||||||
ast_cli(a->fd, "CDR debugging enabled\n");
|
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_clear_flag(&mod_cfg->general->settings, CDR_DEBUG);
|
||||||
ast_cli(a->fd, "CDR debugging disabled\n");
|
ast_cli(a->fd, "CDR debugging disabled\n");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user