mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 03:08:45 +00:00
Merged revisions 82285 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r82285 | tilghman | 2007-09-12 15:12:06 -0500 (Wed, 12 Sep 2007) | 4 lines Working on issue #10531 exposed a rather nasty 64-bit issue on ast_mktime, so we updated the localtime.c file from source. Next we'll have to write ast_strptime to match. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82290 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -659,7 +659,8 @@ static int acf_strptime(struct ast_channel *chan, const char *cmd, char *data,
|
||||
if (!strptime(args.timestring, args.format, &t.time)) {
|
||||
ast_log(LOG_WARNING, "C function strptime() output nothing?!!\n");
|
||||
} else {
|
||||
snprintf(buf, len, "%d", (int) ast_mktime(&t.atm, args.timezone));
|
||||
struct timeval tv = ast_mktime(&t.atm, args.timezone);
|
||||
snprintf(buf, len, "%d", (int) tv.tv_sec);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user