aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-09 17:04:09 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-09 17:04:09 +0000
commitc73adf1ee92ccc97a9fe9fad8d0b30f888464cc8 (patch)
tree6c6572b0b15fbaaa1190fdab832bdfde5d8db72b /apps
parent9a17dd06396786fc70558bab46e307871d768319 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@33292 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 69996c8f7..4c0b78fbc 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;
}