summaryrefslogtreecommitdiff
path: root/apps/app_directory.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-06-11 20:51:43 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-06-11 20:51:43 +0000
commitb353c43c28a86f7a65dbad1a756eb33f50fc6167 (patch)
tree40b4c629ead01450e9ab44eec50a9a176d5d47dc /apps/app_directory.c
parentc2b4e6cef69172716e332e9db78dea8983378f17 (diff)
Merged revisions 68781 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r68781 | tilghman | 2007-06-11 15:45:53 -0500 (Mon, 11 Jun 2007) | 2 lines Issue 9947 - fn2 was unused / incorrectly used ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@68782 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_directory.c')
-rw-r--r--apps/app_directory.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/app_directory.c b/apps/app_directory.c
index 0346d6452..a53cd7406 100644
--- a/apps/app_directory.c
+++ b/apps/app_directory.c
@@ -265,9 +265,6 @@ static int play_mailbox_owner(struct ast_channel *chan, char *context,
int res = 0;
int loop;
char fn[256];
-#ifdef ODBC_STORAGE
- char fn2[256];
-#endif
/* Check for the VoiceMail2 greeting first */
snprintf(fn, sizeof(fn), "%s/voicemail/%s/%s/greet",
@@ -282,7 +279,7 @@ static int play_mailbox_owner(struct ast_channel *chan, char *context,
ast_config_AST_SPOOL_DIR, ext);
}
#ifdef ODBC_STORAGE
- retrieve_file(fn2);
+ retrieve_file(fn);
#endif
if (ast_fileexists(fn, NULL, chan->language) > 0) {
@@ -302,7 +299,6 @@ static int play_mailbox_owner(struct ast_channel *chan, char *context,
}
#ifdef ODBC_STORAGE
ast_filedelete(fn, NULL);
- ast_filedelete(fn2, NULL);
#endif
for (loop = 3 ; loop > 0; loop--) {