From 4330529c739768dbb42d217c08f4a0c25881a58e Mon Sep 17 00:00:00 2001 From: Brian West Date: Sun, 5 Oct 2008 04:36:45 +0000 Subject: [PATCH] tweaks git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9845 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- .../applications/mod_conference/mod_conference.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index ad7600fd56..fbbad8f85b 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -3075,12 +3075,12 @@ static switch_status_t conf_api_sub_say(conference_obj_t *conference, switch_str switch_event_t *event; if (switch_strlen_zero(text)) { - stream->write_function(stream, "(say) Error! No text."); + stream->write_function(stream, "(say) Error! No text.\n"); return SWITCH_STATUS_GENERR; } if (conference_say(conference, text, 0) != SWITCH_STATUS_SUCCESS) { - stream->write_function(stream, "(say) Error!"); + stream->write_function(stream, "(say) Error!\n"); return SWITCH_STATUS_GENERR; } @@ -3127,7 +3127,7 @@ static switch_status_t conf_api_sub_saymember(conference_obj_t *conference, swit } if (!(member = conference_member_get(conference, id))) { - stream->write_function(stream, "(saymember) Unknown Member %u!", id); + stream->write_function(stream, "(saymember) Unknown Member %u!\n", id); goto done; } @@ -3138,7 +3138,7 @@ static switch_status_t conf_api_sub_saymember(conference_obj_t *conference, swit } if (!text || conference_member_say(member, (char *) text, 0) != SWITCH_STATUS_SUCCESS) { - stream->write_function(stream, "(saymember) Error!"); + stream->write_function(stream, "(saymember) Error!\n"); goto done; } @@ -3220,9 +3220,9 @@ static switch_status_t conf_api_sub_relate(conference_obj_t *conference, switch_ if ((member = conference_member_get(conference, id))) { member_del_relationship(member, oid); - stream->write_function(stream, "relationship %u->%u cleared.", id, oid); + stream->write_function(stream, "relationship %u->%u cleared.\n", id, oid); } else { - stream->write_function(stream, "relationship %u->%u not found", id, oid); + stream->write_function(stream, "relationship %u->%u not found.\n", id, oid); } return SWITCH_STATUS_SUCCESS; } @@ -3254,7 +3254,7 @@ static switch_status_t conf_api_sub_relate(conference_obj_t *conference, switch_ stream->write_function(stream, "error!\n"); } } else { - stream->write_function(stream, "relationship %u->%u not found", id, oid); + stream->write_function(stream, "relationship %u->%u not found.\n", id, oid); } }