]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
picky
authorAnthony Minessale <anthony.minessale@gmail.com>
Wed, 20 Dec 2006 00:53:13 +0000 (00:53 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 20 Dec 2006 00:53:13 +0000 (00:53 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3742 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_conference/mod_conference.c

index 350087e3e7211f779177efa534ee9b2c377ba259..30f8d0d73e594d1b8d25d8195af8facccca238f0 100644 (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);
                                        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");
                                }