mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-14 00:24:05 +00:00
Add missing newlines to CLI logging
........ Merged revisions 361471 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 361472 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@361476 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1077,7 +1077,7 @@ static int chanspy_exec(struct ast_channel *chan, const char *data)
|
||||
if (strchr("0123456789*#", tmp) && tmp != '\0') {
|
||||
user_options.exit = tmp;
|
||||
} else {
|
||||
ast_log(LOG_NOTICE, "Argument for option 'x' must be a valid DTMF digit.");
|
||||
ast_log(LOG_NOTICE, "Argument for option 'x' must be a valid DTMF digit.\n");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1086,7 +1086,7 @@ static int chanspy_exec(struct ast_channel *chan, const char *data)
|
||||
if (strchr("0123456789*#", tmp) && tmp != '\0') {
|
||||
user_options.cycle = tmp;
|
||||
} else {
|
||||
ast_log(LOG_NOTICE, "Argument for option 'c' must be a valid DTMF digit.");
|
||||
ast_log(LOG_NOTICE, "Argument for option 'c' must be a valid DTMF digit.\n");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1203,7 +1203,7 @@ static int extenspy_exec(struct ast_channel *chan, const char *data)
|
||||
if (strchr("0123456789*#", tmp) && tmp != '\0') {
|
||||
user_options.exit = tmp;
|
||||
} else {
|
||||
ast_log(LOG_NOTICE, "Argument for option 'x' must be a valid DTMF digit.");
|
||||
ast_log(LOG_NOTICE, "Argument for option 'x' must be a valid DTMF digit.\n");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1212,7 +1212,7 @@ static int extenspy_exec(struct ast_channel *chan, const char *data)
|
||||
if (strchr("0123456789*#", tmp) && tmp != '\0') {
|
||||
user_options.cycle = tmp;
|
||||
} else {
|
||||
ast_log(LOG_NOTICE, "Argument for option 'c' must be a valid DTMF digit.");
|
||||
ast_log(LOG_NOTICE, "Argument for option 'c' must be a valid DTMF digit.\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user