diff --git a/ChangeLog b/ChangeLog index befa50c..e82519c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 0.8.1 ===== 09-Jan-2011: - use CFLAGS -Wall only with GCC compiler + - fixed UA masquerading which was always set ("foobar") 14-Oct-2010: - fixed a number of compiler warnings (by Norm Brandinger) [3086593,3086371,3086351] 03-Oct-2010: - use getifaddrs() to get the IP address of local interfaces. diff --git a/src/siproxd.c b/src/siproxd.c index 965977a..f5d05f6 100644 --- a/src/siproxd.c +++ b/src/siproxd.c @@ -81,7 +81,6 @@ static cfgopts_t main_cfg_opts[] = { { "default_expires", TYP_INT4, &configuration.default_expires, {DEFAULT_EXPIRES, NULL} }, { "autosave_registrations",TYP_INT4, &configuration.autosave_registrations, {0, NULL} }, { "ua_string", TYP_STRING, &configuration.ua_string, {0, NULL} }, - { "ua_string", TYP_STRING, &configuration.ua_string, {0, "foobar"} }, { "use_rport", TYP_INT4, &configuration.use_rport, {0, NULL} }, { "obscure_loops", TYP_INT4, &configuration.obscure_loops, {0, NULL} }, { "plugindir", TYP_STRING, &configuration.plugin_dir, {0, NULL} },