aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-16 15:58:34 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-16 15:58:34 +0000
commit77480da067a80bff11471ad5b371afe1e8e45b04 (patch)
tree2ae4451f63884b4d4444db62a2ba60c1632f37b8 /apps
parentb50b8d670fc78088726e453558a4c659e168cbd6 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.4@79690 f38db490-d61c-443f-a65b-d21fe96a405b
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 024e2cdc9..896812759 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -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;
}