From a97672afa95760d50722b927a675bd68935efe60 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 20 Dec 2006 00:53:13 +0000 Subject: [PATCH] picky git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3742 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_conference/mod_conference.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }