From: Jason Parker Date: Thu, 5 Apr 2007 16:09:41 +0000 (+0000) Subject: Just because we can't find the voicemail configuration file, doesn't X-Git-Tag: 1.2.18~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63747722506eb7c3e83ffd66dc7a4d91fd56cf39;p=thirdparty%2Fasterisk.git Just because we can't find the voicemail configuration file, doesn't mean that the module failed to load. The user could be using realtime. Issue #9473 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@60267 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 594a638226..ce6b545fd7 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6353,7 +6353,7 @@ static int load_config(void) return 0; } else { ast_mutex_unlock(&vmlock); - ast_log(LOG_WARNING, "Failed to load configuration file. Module not activated.\n"); + ast_log(LOG_WARNING, "Failed to load configuration file.\n"); return 0; } }