aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-08 16:59:49 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-08 16:59:49 +0000
commit6d49e220571b1f6409b47681188459b9a6588dce (patch)
tree10229824931b76d904ba3d5776841d78f2e6b556 /main
parent1a47b3eeeffa7a25e8381539e8c47c732a8234e3 (diff)
oops, fixing build
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@205222 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/say.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/say.c b/main/say.c
index 0d98ba38a..1f0683ce1 100644
--- a/main/say.c
+++ b/main/say.c
@@ -3453,7 +3453,7 @@ static int say_date_with_format(struct ast_channel *chan, time_t t, const char *
if (deprecation_warning++ % 10 == 0) {
ast_log(LOG_WARNING, "mx is not a standard language code. Please switch to using es_MX instead.\n");
}
- return ast_say_date_with_format_es(chan, time, ints, lang, format, timezone);
+ return ast_say_date_with_format_es(chan, t, ints, lang, format, tzone);
} else if (!strncasecmp(lang, "nl", 2)) { /* Dutch syntax */
return ast_say_date_with_format_nl(chan, t, ints, lang, format, tzone);
} else if (!strncasecmp(lang, "pl", 2)) { /* Polish syntax */
@@ -3467,7 +3467,7 @@ static int say_date_with_format(struct ast_channel *chan, time_t t, const char *
if (deprecation_warning++ % 10 == 0) {
ast_log(LOG_WARNING, "tw is a standard language code for Twi, not Taiwanese. Please switch to using zh_TW instead.\n");
}
- return ast_say_date_with_format_zh(chan, time, ints, lang, format, timezone);
+ return ast_say_date_with_format_zh(chan, t, ints, lang, format, tzone);
} else if (!strncasecmp(lang, "zh", 2)) { /* Taiwanese / Chinese syntax */
return ast_say_date_with_format_zh(chan, t, ints, lang, format, tzone);
}