[asterisk-commits] file: trunk r114580 - in /trunk: ./ main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Apr 23 09:55:04 CDT 2008
Author: file
Date: Wed Apr 23 09:55:03 2008
New Revision: 114580
URL: http://svn.digium.com/view/asterisk?view=rev&rev=114580
Log:
Merged revisions 114579 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r114579 | file | 2008-04-23 11:54:11 -0300 (Wed, 23 Apr 2008) | 4 lines
Instead of stopping dialplan execution when SayNumber attempts to say a large number that it can not print out a message informing the user and continue on.
(closes issue #12502)
Reported by: bcnit
........
Modified:
trunk/ (props changed)
trunk/main/pbx.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/pbx.c
URL: http://svn.digium.com/view/asterisk/trunk/main/pbx.c?view=diff&rev=114580&r1=114579&r2=114580
==============================================================================
--- trunk/main/pbx.c (original)
+++ trunk/main/pbx.c Wed Apr 23 09:55:03 2008
@@ -8012,7 +8012,12 @@
return -1;
}
}
- return ast_say_number(chan, atoi(tmp), "", chan->language, options);
+
+ if (ast_say_number(chan, atoi(tmp), "", chan->language, options)) {
+ ast_log(LOG_WARNING, "We were unable to say the number %s, is it too large?\n", tmp);
+ }
+
+ return 0;
}
static int pbx_builtin_saydigits(struct ast_channel *chan, void *data)
More information about the asterisk-commits
mailing list