From: Anthony Minessale Date: Wed, 20 Dec 2006 00:53:13 +0000 (+0000) Subject: picky X-Git-Tag: v1.0-beta1~1507 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a97672afa95760d50722b927a675bd68935efe60;p=thirdparty%2Ffreeswitch.git picky git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3742 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 350087e3e7..30f8d0d73e 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2111,7 +2111,7 @@ static switch_status_t conf_function(char *buf, switch_core_session_t *session, switch_hash_this(hi, NULL, NULL, &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); stream->write_function(stream, "\n"); }