From: Terry Wilson Date: Fri, 3 Sep 2010 16:20:45 +0000 (+0000) Subject: Merged revisions 284881 via svnmerge from X-Git-Tag: 1.6.2.14-rc1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00bb0abd8e57d43aae9f5385c01b7c3dc1bf2ba8;p=thirdparty%2Fasterisk.git 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.6.2@284897 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_chanspy.c b/apps/app_chanspy.c index 2ce2e0ae26..031c82998f 100644 --- a/apps/app_chanspy.c +++ b/apps/app_chanspy.c @@ -962,7 +962,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, "");