[svn-commits] tilghman: branch 1.6.2 r205223 - /branches/1.6.2/main/say.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jul 8 12:00:09 CDT 2009


Author: tilghman
Date: Wed Jul  8 12:00:05 2009
New Revision: 205223

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=205223
Log:
oops, fixing build

Modified:
    branches/1.6.2/main/say.c

Modified: branches/1.6.2/main/say.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/main/say.c?view=diff&rev=205223&r1=205222&r2=205223
==============================================================================
--- branches/1.6.2/main/say.c (original)
+++ branches/1.6.2/main/say.c Wed Jul  8 12:00:05 2009
@@ -3453,7 +3453,7 @@
 		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 @@
 		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);
 	}




More information about the svn-commits mailing list