]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Fix -h flag on logger.pl; commit missing lines from ChangeLog
authorMichael S Collins <msc@freeswitch.org>
Wed, 23 Mar 2011 04:25:19 +0000 (21:25 -0700)
committerMichael S Collins <msc@freeswitch.org>
Wed, 23 Mar 2011 04:25:19 +0000 (21:25 -0700)
docs/ChangeLog
libs/esl/perl/logger.pl

index b89b53d3f3c3c70618d2fb6353b246519ada8875..63cdce237946c6e616df24b08abbd40f804d9c48 100644 (file)
@@ -664,6 +664,7 @@ freeswitch (1.0.7)
        mod_sofia: contact-params should not be set if the string is empty (r:06988e1a/FS-3084)\r
        mod_sofia: segfault with sofia_contact when invalid parameters are given (r:4e60f14a/FS-3072)\r
        mod_sofia: Fix minupnpd nat_map updated IP not getting set in SIP profiles (r:e7acd4d1/FS-3054)\r
+       mod_sofia: add sip_execute_on_image variable similar to execute_on_answer etc so you can run t38_gateway or rxfax etc when you get a T.38 re-invite but no CNG tone or you want to ignore the tone and only react when getting a T.38 re-invite (r:53fc3f7f)\r
        mod_spandsp: initial checkin of mod_fax/mod_voipcodecs merge into mod_spandsp (r:fa9a59a8)\r
        mod_spandsp: rework of new mod_spandsp to have functions broken up into different c files (r:65400642)\r
        mod_spandsp: improve duplicate digit detection and add 'min_dup_digit_spacing_ms' channel variable for use with the dtmf detector (r:eab4f246/FSMOD-45)\r
index 08213c033f3fdfb25231484fd0e172657571020c..c2f8d6c25786c926f02536e86e7b64f4277a8ffc 100644 (file)
@@ -42,7 +42,7 @@ sub parse(\$\$$) {
 }
 
 for($i = 0; $i < $argc; $i++) {
-    if ($ARGV[$i] =~ /^\-help$|^\-\-help$/) {
+    if ($ARGV[$i] =~ /^\-h$|^\-\-help$/) {
        print $USAGE;
        exit;
     }