From 2e701efc81f8695691933a0cbf8a83352a8e7cf8 Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Fri, 3 Sep 2010 16:28:18 +0000 Subject: [PATCH] Merged revisions 284897 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ................ r284897 | twilson | 2010-09-03 11:20:45 -0500 (Fri, 03 Sep 2010) | 12 lines Merged revisions 284881 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r284881 | twilson | 2010-09-03 11:10:23 -0500 (Fri, 03 Sep 2010) | 5 lines Properly detect when a sound file doesn't exist ast_fileexists returns -1 for error and 0 for a non-existant file. The existing code treated missing files as though they existed. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@284921 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_chanspy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c index 96748e6671..f1b509c634 100644 --- a/apps/app_chanspy.c +++ b/apps/app_chanspy.c @@ -927,7 +927,7 @@ static int common_exec(struct ast_channel *chan, struct ast_flags *flags, } if (!ast_test_flag(flags, OPTION_NAME) || res < 0) { if (!ast_test_flag(flags, OPTION_NOTECH)) { - if (ast_fileexists(peer_name, NULL, NULL) != -1) { + if (ast_fileexists(peer_name, NULL, NULL) > 0) { res = ast_streamfile(chan, peer_name, chan->language); if (!res) { res = ast_waitstream(chan, "");