]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
automerge commit
authorAutomerge script <automerge@asterisk.org>
Thu, 19 Oct 2006 18:02:35 +0000 (18:02 +0000)
committerAutomerge script <automerge@asterisk.org>
Thu, 19 Oct 2006 18:02:35 +0000 (18:02 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@45711 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_externalivr.c

index b61ddd99a28a0fbbcad1f9c87959f2078e492ae9..5d27f9b3cb2b032e8d065821fa723f43d23afb94 100644 (file)
@@ -447,7 +447,7 @@ static int app_exec(struct ast_channel *chan, void *data)
                                        continue;
 
                                if (input[0] == 'S') {
-                                       if (ast_fileexists(&input[2], NULL, NULL) == -1) {
+                                       if (ast_fileexists(&input[2], NULL, u->chan->language) == -1) {
                                                ast_chan_log(LOG_WARNING, chan, "Unknown file requested '%s'\n", &input[2]);
                                                send_child_event(child_events, 'Z', NULL, chan);
                                                strcpy(&input[2], "exception");
@@ -466,7 +466,7 @@ static int app_exec(struct ast_channel *chan, void *data)
                                                AST_LIST_INSERT_TAIL(&u->playlist, entry, list);
                                        AST_LIST_UNLOCK(&u->playlist);
                                } else if (input[0] == 'A') {
-                                       if (ast_fileexists(&input[2], NULL, NULL) == -1) {
+                                       if (ast_fileexists(&input[2], NULL, u->chan->language) == -1) {
                                                ast_chan_log(LOG_WARNING, chan, "Unknown file requested '%s'\n", &input[2]);
                                                send_child_event(child_events, 'Z', NULL, chan);
                                                strcpy(&input[2], "exception");