summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2008-10-07 16:44:00 +0000
committerSean Bright <sean@malleable.com>2008-10-07 16:44:00 +0000
commit8b532209907555a3b3ab7098e52e4013f60db389 (patch)
tree3cb75bfc56b7a5c439152bf9912ea220c2f430be /apps
parent4d9955141c18cf52f47917c8a84ea2ada6268089 (diff)
Or not.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@147192 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 5e7b4c879..3af0de41a 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -776,7 +776,6 @@ static void apply_option(struct ast_vm_user *vmu, const char *var, const char *v
} else if (!strcasecmp(var, "imappassword")) {
ast_copy_string(vmu->imappassword, value, sizeof(vmu->imappassword));
} else if (!strcasecmp(var, "imapsecret")) {
- ast_log(LOG_WARNING, "Use of the 'imapsecret' option is discouraged, please use 'imappassword' instead.\n");
ast_copy_string(vmu->imappassword, value, sizeof(vmu->imappassword));
#endif
} else if (!strcasecmp(var, "delete") || !strcasecmp(var, "deletevoicemail")) {
@@ -1013,7 +1012,6 @@ static void apply_options_full(struct ast_vm_user *retval, struct ast_variable *
} else if (!strcasecmp(tmp->name, "imappassword")) {
ast_copy_string(retval->imappassword, tmp->value, sizeof(retval->imappassword));
} else if (!strcasecmp(tmp->name, "imapsecret")) {
- ast_log(LOG_WARNING, "Use of the 'imapsecret' option is discouraged, please use 'imappassword' instead.\n");
ast_copy_string(retval->imappassword, tmp->value, sizeof(retval->imappassword));
#endif
} else