]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 370986,370989 via svnmerge from
authorAutomerge script <automerge@asterisk.org>
Thu, 9 Aug 2012 18:23:52 +0000 (18:23 +0000)
committerAutomerge script <automerge@asterisk.org>
Thu, 9 Aug 2012 18:23:52 +0000 (18:23 +0000)
file:///srv/subversion/repos/asterisk/branches/10

................
  r370986 | kmoore | 2012-08-09 12:39:52 -0500 (Thu, 09 Aug 2012) | 11 lines

  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
................
  r370989 | may | 2012-08-09 13:05:34 -0500 (Thu, 09 Aug 2012) | 5 lines

  change opening h323 logfile with append mode instead of overwrite
  ........

  Merged revisions 370988 from http://svn.asterisk.org/svn/asterisk/branches/1.8
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10-digiumphones@371009 65c4cc65-6c06-0410-ace0-fbb531ad65f3

addons/ooh323c/src/ooh323ep.c
apps/app_meetme.c

index 1d5d9579ed87f88ba1fa071dbd01b4fe638bb7e8..5f45f2473d662a87f38414b8e600d03b17032974 100644 (file)
@@ -56,7 +56,7 @@ int ooH323EpInitialize
       strcpy(gH323ep.traceFile, DEFAULT_TRACEFILE);      
    }
 
-   gH323ep.fptraceFile = fopen(gH323ep.traceFile, "w");
+   gH323ep.fptraceFile = fopen(gH323ep.traceFile, "a");
    if(gH323ep.fptraceFile == NULL)
    {
       printf("Error:Failed to open trace file %s for write.\n", 
index f2a6463d739e09e0ccf8ec814da43ef4f8fc030d..4ba43ca78397387fea7cd5158afb0932e5ad305e 100644 (file)
@@ -186,7 +186,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
@@ -595,7 +595,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),