summaryrefslogtreecommitdiff
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2012-08-09 17:40:45 +0000
committerKinsey Moore <kmoore@digium.com>2012-08-09 17:40:45 +0000
commit609061a8c041bd9fc13d2d77ee753d7c43cd7783 (patch)
tree33a87e7b181fe0c14cda413d0d4e4ff405ef0b32 /apps/app_meetme.c
parent9ee8b3c0f639ea2a269c2107055d13dbe08c6b18 (diff)
Correct documentation for the MeetMe x flag
The documentation for the x flag for MeetMe incorrectly described its function as closing down the conference when the last marked user left. It actually causes the users with that flag to leave the conference when the last marked user exits. The functionality of this flag is not changing. ........ Merged revisions 370985 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 370986 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370987 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 98b7f427c..59bde4012 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -189,7 +189,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<argument name="secs" required="true" />
</option>
<option name="x">
- <para>Close the conference when last marked user exits</para>
+ <para>Leave the conference when the last marked user leaves.</para>
</option>
<option name="X">
<para>Allow user to exit the conference by entering a valid single digit
@@ -599,7 +599,7 @@ enum {
CONFFLAG_AGI = (1 << 7),
/*! Set to have music on hold when user is alone in conference */
CONFFLAG_MOH = (1 << 8),
- /*! If set the MeetMe will return if all marked with this flag left */
+ /*! If set, the channel will leave the conference if all marked users leave */
CONFFLAG_MARKEDEXIT = (1 << 9),
/*! If set, the MeetMe will wait until a marked user enters */
CONFFLAG_WAITMARKED = (1 << 10),