git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3742 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2006-12-20 00:53:13 +00:00
parent cebf3306af
commit a97672afa9
1 changed files with 1 additions and 1 deletions

View File

@ -2111,7 +2111,7 @@ static switch_status_t conf_function(char *buf, switch_core_session_t *session,
switch_hash_this(hi, NULL, NULL, &val); switch_hash_this(hi, NULL, NULL, &val);
conference = (conference_obj_t *) val; conference = (conference_obj_t *) val;
stream->write_function(stream, "Conference %s (%u members)\n", conference->name, conference->count); stream->write_function(stream, "Conference %s (%u member%s)\n", conference->name, conference->count, conference->count == 1 ? "" : "s");
conference_list(conference, stream, d); conference_list(conference, stream, d);
stream->write_function(stream, "\n"); stream->write_function(stream, "\n");
} }