From: William King Date: Fri, 14 Feb 2014 22:46:46 +0000 (-0800) Subject: FS-5382 --resolve remove the hardcoded timezone. X-Git-Tag: v1.5.8~25^2~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44bf44e774f537da096f8b82d7068d931538f393;p=thirdparty%2Ffreeswitch.git FS-5382 --resolve remove the hardcoded timezone. --- diff --git a/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c b/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c index 8e82f7cfc4..1ad31a58f4 100644 --- a/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c +++ b/src/mod/xml_int/mod_xml_radius/mod_xml_radius.c @@ -477,7 +477,7 @@ switch_status_t mod_xml_radius_add_params(switch_core_session_t *session, switch switch_time_exp_lt(&tm, time); if ( GLOBAL_TIME_FORMAT == 1 ) { - av_value = switch_mprintf("%02u:%02u:%02u.%03u MSD %s %s %02u %04u", + av_value = switch_mprintf("%02u:%02u:%02u.%03u %s %s %s %02u %04u", tm.tm_hour, tm.tm_min, tm.tm_sec, tm.tm_usec/1000, GLOBAL_TIME_FORMAT, radattrdays[tm.tm_wday], radattrmonths[tm.tm_mon], tm.tm_mday, tm.tm_year + 1900);