diff --git a/asn1/goose/goose.cnf b/asn1/goose/goose.cnf index a855a7fec7..4125451d1f 100644 --- a/asn1/goose/goose.cnf +++ b/asn1/goose/goose.cnf @@ -42,7 +42,7 @@ ts.secs = seconds; ts.nsecs = nanoseconds; - ptime = abs_time_to_str(&ts, ABSOLUTE_TIME_UTC, TRUE); + ptime = abs_time_to_ep_str(&ts, ABSOLUTE_TIME_UTC, TRUE); if(hf_index >= 0) { diff --git a/asn1/mms/mms.cnf b/asn1/mms/mms.cnf index d99fd50f58..39eda78414 100644 --- a/asn1/mms/mms.cnf +++ b/asn1/mms/mms.cnf @@ -59,7 +59,7 @@ UtcTime TYPE = FT_STRING DISPLAY = BASE_NONE if(len == 4) { milliseconds = tvb_get_ntohl(tvb, offset); - ptime = time_msecs_to_str(milliseconds); + ptime = time_msecs_to_ep_str(milliseconds); if(hf_index >= 0) { @@ -79,7 +79,7 @@ UtcTime TYPE = FT_STRING DISPLAY = BASE_NONE ts.secs = (days + 5113) * 86400 + milliseconds / 1000; ts.nsecs = (milliseconds %% 1000) * 1000000U; - ptime = abs_time_to_str(&ts, ABSOLUTE_TIME_UTC, TRUE); + ptime = abs_time_to_ep_str(&ts, ABSOLUTE_TIME_UTC, TRUE); if(hf_index >= 0) { proto_tree_add_string(tree, hf_index, tvb, offset, len, ptime); @@ -126,7 +126,7 @@ UtcTime TYPE = FT_STRING DISPLAY = BASE_NONE ts.secs = seconds; ts.nsecs = nanoseconds; - ptime = abs_time_to_str(&ts, ABSOLUTE_TIME_UTC, TRUE); + ptime = abs_time_to_ep_str(&ts, ABSOLUTE_TIME_UTC, TRUE); if(hf_index >= 0) { diff --git a/asn1/sv/sv.cnf b/asn1/sv/sv.cnf index e448da20b0..15acfafdfa 100644 --- a/asn1/sv/sv.cnf +++ b/asn1/sv/sv.cnf @@ -49,7 +49,7 @@ ts.secs = seconds; ts.nsecs = nanoseconds; - ptime = abs_time_to_str(&ts, ABSOLUTE_TIME_UTC, TRUE); + ptime = abs_time_to_ep_str(&ts, ABSOLUTE_TIME_UTC, TRUE); if(hf_index >= 0) { @@ -74,4 +74,4 @@ UtcTime TYPE = FT_STRING DISPLAY = BASE_NONE sv_data.smpMod = value; #.END -#.END_OF_CNF \ No newline at end of file +#.END_OF_CNF