]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
base_encode is not trying to open a log file, so we should not call it a log file...
authorMark Michelson <mmichelson@digium.com>
Thu, 16 Aug 2007 15:58:34 +0000 (15:58 +0000)
committerMark Michelson <mmichelson@digium.com>
Thu, 16 Aug 2007 15:58:34 +0000 (15:58 +0000)
(related to issue #10452, reported by bcnit)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@79690 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_voicemail.c

index 024e2cdc9d4a127a1b163b4923584c7291ec90d2..8968127598f8aa187c3e7efe3c8ec1ae6dceea51 100644 (file)
@@ -1626,7 +1626,7 @@ static int base_encode(char *filename, FILE *so)
        bio.iocp = BASEMAXINLINE;
 
        if (!(fi = fopen(filename, "rb"))) {
-               ast_log(LOG_WARNING, "Failed to open log file: %s: %s\n", filename, strerror(errno));
+               ast_log(LOG_WARNING, "Failed to open file: %s: %s\n", filename, strerror(errno));
                return -1;
        }