From: Jason Parker Date: Thu, 5 Apr 2007 16:11:34 +0000 (+0000) Subject: Merged revisions 60268 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~2906 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02f03d9aeba51fb91d390fedf7965b6a285c49ba;p=thirdparty%2Fasterisk.git Merged revisions 60268 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r60268 | qwell | 2007-04-05 11:10:48 -0500 (Thu, 05 Apr 2007) | 13 lines Merged revisions 60267 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r60267 | qwell | 2007-04-05 11:09:41 -0500 (Thu, 05 Apr 2007) | 5 lines 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/trunk@60269 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index b1e62ff8b2..b603f36e39 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -7729,7 +7729,7 @@ static int load_config(void) return 0; } else { AST_LIST_UNLOCK(&users); - 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; } }