mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-08 02:48:29 +00:00
Merged revisions 113117 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r113117 | tilghman | 2008-04-07 12:51:49 -0500 (Mon, 07 Apr 2008) | 3 lines Force ast_mktime() to check for DST, since strptime(3) does not. (Closes issue #12374) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@113172 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -704,7 +704,10 @@ 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 {
|
||||
struct timeval tv = ast_mktime(&t.atm, args.timezone);
|
||||
struct timeval tv;
|
||||
/* Since strptime(3) does not check DST, force ast_mktime() to calculate it. */
|
||||
t.atm.tm_isdst = -1;
|
||||
tv = ast_mktime(&t.atm, args.timezone);
|
||||
snprintf(buf, len, "%d", (int) tv.tv_sec);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user