From 74c2948c2299773fd3816af43e06e3bdf714ba3a Mon Sep 17 00:00:00 2001 From: tilghman Date: Wed, 18 Jul 2007 19:47:20 +0000 Subject: Merge in ast_strftime branch, which changes timestamps to be accurate to the microsecond, instead of only to the second git-svn-id: http://svn.digium.com/svn/asterisk/trunk@75706 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/iax2-parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels/iax2-parser.c') diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c index 769505193..1c52cca59 100644 --- a/channels/iax2-parser.c +++ b/channels/iax2-parser.c @@ -140,7 +140,7 @@ static void dump_byte(char *output, int maxlen, void *value, int len) static void dump_datetime(char *output, int maxlen, void *value, int len) { - struct tm tm; + struct ast_tm tm; unsigned long val = (unsigned long) ntohl(get_unaligned_uint32(value)); if (len == (int)sizeof(unsigned int)) { tm.tm_sec = (val & 0x1f) << 1; @@ -149,7 +149,7 @@ static void dump_datetime(char *output, int maxlen, void *value, int len) tm.tm_mday = (val >> 16) & 0x1f; tm.tm_mon = ((val >> 21) & 0x0f) - 1; tm.tm_year = ((val >> 25) & 0x7f) + 100; - strftime(output, maxlen, "%Y-%m-%d %T", &tm); + ast_strftime(output, maxlen, "%Y-%m-%d %T", &tm); } else ast_copy_string(output, "Invalid DATETIME format!", maxlen); } -- cgit v1.2.3