From: Automerge script Date: Fri, 9 Jun 2006 17:04:09 +0000 (+0000) Subject: automerge commit X-Git-Tag: 1.2.10-netsec~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6a39fbcc217cb57b948d56dc85f2914d99c3a8b;p=thirdparty%2Fasterisk.git automerge commit git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@33292 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 69996c8f70..4c0b78fbcd 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -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; }