aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/func_strings.c')
-rw-r--r--funcs/func_strings.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/funcs/func_strings.c b/funcs/func_strings.c
index b01bec712..10c274efd 100644
--- a/funcs/func_strings.c
+++ b/funcs/func_strings.c
@@ -499,6 +499,8 @@ static int acf_strptime(struct ast_channel *chan, char *cmd, char *data,
if (!strptime(args.timestring, args.format, &time)) {
ast_log(LOG_WARNING, "C function strptime() output nothing?!!\n");
} else {
+ /* Since strptime(3) does not check DST, force ast_mktime() to calculate it. */
+ time.tm_isdst = -1;
snprintf(buf, len, "%d", (int) ast_mktime(&time, args.timezone));
}