[svn-commits] branch 1.2 r33264 - /branches/1.2/apps/app_meetme.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Fri Jun 9 09:31:29 MST 2006
Author: file
Date: Fri Jun 9 11:31:29 2006
New Revision: 33264
URL: http://svn.digium.com/view/asterisk?rev=33264&view=rev
Log:
Add missing newlines (issue #7323 reported by darkskiez)
Modified:
branches/1.2/apps/app_meetme.c
Modified: branches/1.2/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_meetme.c?rev=33264&r1=33263&r2=33264&view=diff
==============================================================================
--- branches/1.2/apps/app_meetme.c (original)
+++ branches/1.2/apps/app_meetme.c Fri Jun 9 11:31:29 2006
@@ -2109,7 +2109,7 @@
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 @@
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;
}
More information about the svn-commits
mailing list