diff --git a/docs/ChangeLog b/docs/ChangeLog index b89b53d3f3..63cdce2379 100644 --- a/docs/ChangeLog +++ b/docs/ChangeLog @@ -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) mod_sofia: segfault with sofia_contact when invalid parameters are given (r:4e60f14a/FS-3072) mod_sofia: Fix minupnpd nat_map updated IP not getting set in SIP profiles (r:e7acd4d1/FS-3054) + 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) mod_spandsp: initial checkin of mod_fax/mod_voipcodecs merge into mod_spandsp (r:fa9a59a8) mod_spandsp: rework of new mod_spandsp to have functions broken up into different c files (r:65400642) 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) diff --git a/libs/esl/perl/logger.pl b/libs/esl/perl/logger.pl index 08213c033f..c2f8d6c257 100644 --- a/libs/esl/perl/logger.pl +++ b/libs/esl/perl/logger.pl @@ -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; }