Add missing newlines (issue #7323 reported by darkskiez)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@33264 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2006-06-09 16:31:29 +00:00
parent 4de28aa7cc
commit 43f10147fe

View File

@@ -2109,7 +2109,7 @@ static int admin_exec(struct ast_channel *chan, void *data) {
if (user && (user->adminflags & ADMINFLAG_MUTED)) {
user->adminflags ^= ADMINFLAG_MUTED;
} else {
ast_log(LOG_NOTICE, "Specified User not found or he muted himself!");
ast_log(LOG_NOTICE, "Specified User not found or he muted himself!\n");
}
break;
case 110: /* n: Unmute all users */
@@ -2129,7 +2129,7 @@ static int admin_exec(struct ast_channel *chan, void *data) {
if (user) {
user->adminflags |= ADMINFLAG_KICKME;
} else {
ast_log(LOG_NOTICE, "Specified User not found!");
ast_log(LOG_NOTICE, "Specified User not found!\n");
}
break;
}