aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-08 17:01:02 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-08 17:01:02 +0000
commite9ea5790aae9b1e38428d8e2dde1eaf0737c7777 (patch)
tree1efef6eb5844bcbdbf9b9490a67173b55ab54568
parent3eb9fbb719f89a99ab8f52831a581147f0781b95 (diff)
oops, fixing build
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@205224 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/say.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/say.c b/main/say.c
index 11de24c67..4f89941c5 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);
}