mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +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:
@@ -293,11 +293,10 @@ static int phone_call(struct ast_channel *ast, char *dest, int timeout)
|
||||
struct phone_pvt *p;
|
||||
|
||||
PHONE_CID cid;
|
||||
time_t UtcTime;
|
||||
struct tm tm;
|
||||
struct timeval UtcTime = ast_tvnow();
|
||||
struct ast_tm tm;
|
||||
int start;
|
||||
|
||||
time(&UtcTime);
|
||||
ast_localtime(&UtcTime, &tm, NULL);
|
||||
|
||||
memset(&cid, 0, sizeof(PHONE_CID));
|
||||
|
Reference in New Issue
Block a user