summaryrefslogtreecommitdiff
path: root/apps/app_chanspy.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2012-04-06 18:19:03 +0000
committerKinsey Moore <kmoore@digium.com>2012-04-06 18:19:03 +0000
commita485f44022c1e52270244b7bc93efabb4a760be2 (patch)
treec67dac205dac3d0427ba880cb824477dd895b201 /apps/app_chanspy.c
parentfcb7eb3c59e7a8a5d92437cbcc129ca9f251a866 (diff)
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
Diffstat (limited to 'apps/app_chanspy.c')
-rw-r--r--apps/app_chanspy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c
index 9a39622b5..23b4ab04e 100644
--- a/apps/app_chanspy.c
+++ b/apps/app_chanspy.c
@@ -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");
}
}