mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 11:58:40 +00:00
Merge in ast_strftime branch, which changes timestamps to be accurate to the microsecond, instead of only to the second
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@75706 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user