summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-08-16 15:59:15 +0000
committerMark Michelson <mmichelson@digium.com>2007-08-16 15:59:15 +0000
commit80f49f0ac88688f42cb87bfded6ee53c2a2aae7e (patch)
tree014ed24cba34eb8b411469067521fa2d057fa859 /apps
parent3f998a86a11df4f3d40f00760d4c360b9548e646 (diff)
Merged revisions 79690 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r79690 | mmichelson | 2007-08-16 10:58:34 -0500 (Thu, 16 Aug 2007) | 5 lines base_encode is not trying to open a log file, so we should not call it a log file in the warning. (related to issue #10452, reported by bcnit) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79691 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 824c102ae..5a8f4521c 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -1793,7 +1793,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;
}