aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-28 18:00:30 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-28 18:00:30 +0000
commit9d72f02855b14b7514f058ba227219bd65a6e259 (patch)
tree8c1299913a9b411db9921675bb15da5c491a8035 /funcs
parent85942d51eb58dc2dbb821b97eb3f3b7990ae3780 (diff)
Put in missing \ns on the end of ast_logs (issue #7936 reported by wojtekka)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@43924 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_timeout.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/funcs/func_timeout.c b/funcs/func_timeout.c
index 4e9256ef5..5983617aa 100644
--- a/funcs/func_timeout.c
+++ b/funcs/func_timeout.c
@@ -43,7 +43,7 @@ static char *builtin_function_timeout_read(struct ast_channel *chan, char *cmd,
time_t myt;
if (!data) {
- ast_log(LOG_ERROR, "Must specify type of timeout to get.");
+ ast_log(LOG_ERROR, "Must specify type of timeout to get.\n");
return NULL;
}
@@ -73,7 +73,7 @@ static char *builtin_function_timeout_read(struct ast_channel *chan, char *cmd,
break;
default:
- ast_log(LOG_ERROR, "Unknown timeout type specified.");
+ ast_log(LOG_ERROR, "Unknown timeout type specified.\n");
break;
}
@@ -87,7 +87,7 @@ static void builtin_function_timeout_write(struct ast_channel *chan, char *cmd,
struct tm myt;
if (!data) {
- ast_log(LOG_ERROR, "Must specify type of timeout to set.");
+ ast_log(LOG_ERROR, "Must specify type of timeout to set.\n");
return;
}
@@ -129,7 +129,7 @@ static void builtin_function_timeout_write(struct ast_channel *chan, char *cmd,
break;
default:
- ast_log(LOG_ERROR, "Unknown timeout type specified.");
+ ast_log(LOG_ERROR, "Unknown timeout type specified.\n");
break;
}
}