datetime patches from Tilghman (bug #1905)
authorMark Spencer <markster@digium.com>
Wed, 23 Jun 2004 20:19:12 +0000 (20:19 +0000)
committerMark Spencer <markster@digium.com>
Wed, 23 Jun 2004 20:19:12 +0000 (20:19 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3289 65c4cc65-6c06-0410-ace0-fbb531ad65f3

say.c

diff --git a/say.c b/say.c
index c527d9a..cd4cb87 100755 (executable)
--- a/say.c
+++ b/say.c
@@ -1836,8 +1836,7 @@ int ast_say_date_with_format_en(struct ast_channel *chan, time_t time, char *int
                                for (sndoffset=0 ; (format[++offset] != '\'') && (sndoffset < 256) ; sndoffset++)
                                        sndfile[sndoffset] = format[offset];
                                sndfile[sndoffset] = '\0';
-                               snprintf(nextmsg,sizeof(nextmsg), AST_SOUNDS "/%s", sndfile);
-                               res = wait_file(chan,ints,nextmsg,lang);
+                               res = wait_file(chan,ints,sndfile,lang);
                                break;
                        case 'A':
                        case 'a':
@@ -2118,8 +2117,7 @@ int ast_say_date_with_format_de(struct ast_channel *chan, time_t time, char *int
                                for (sndoffset=0 ; (format[++offset] != '\'') && (sndoffset < 256) ; sndoffset++)
                                        sndfile[sndoffset] = format[offset];
                                sndfile[sndoffset] = '\0';
-                               snprintf(nextmsg,sizeof(nextmsg), AST_SOUNDS "/%s", sndfile);
-                               res = wait_file(chan,ints,nextmsg,lang);
+                               res = wait_file(chan,ints,sndfile,lang);
                                break;
                        case 'A':
                        case 'a':
@@ -2584,8 +2582,7 @@ int ast_say_date_with_format_nl(struct ast_channel *chan, time_t time, char *int
                                for (sndoffset=0 ; (format[++offset] != '\'') && (sndoffset < 256) ; sndoffset++)
                                        sndfile[sndoffset] = format[offset];
                                sndfile[sndoffset] = '\0';
-                               snprintf(nextmsg,sizeof(nextmsg), AST_SOUNDS "/%s", sndfile);
-                               res = wait_file(chan,ints,nextmsg,lang);
+                               res = wait_file(chan,ints,sndfile,lang);
                                break;
                        case 'A':
                        case 'a':
@@ -3012,8 +3009,7 @@ int ast_say_date_with_format_tw(struct ast_channel *chan, time_t time, char *int
                                for (sndoffset=0 ; (format[++offset] != '\'') && (sndoffset < 256) ; sndoffset++)
                                        sndfile[sndoffset] = format[offset];
                                sndfile[sndoffset] = '\0';
-                               snprintf(nextmsg,sizeof(nextmsg), AST_SOUNDS "/%s", sndfile);
-                               res = wait_file(chan,ints,nextmsg,lang);
+                               res = wait_file(chan,ints,sndfile,lang);
                                break;
                        case 'A':
                        case 'a':