mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-05 13:55:30 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user