From a2da1f08bd6c1e4cd1d9cb5d8bba849c4b141d7c Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Fri, 3 Sep 2004 15:25:11 +0000 Subject: [PATCH] Make sure shell version happens even if MySQL mailboxes are there (bug #2367) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3719 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index f20d6d0298..4684e6fedd 100755 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -574,13 +574,6 @@ static int reset_user_pw(char *context, char *mailbox, char *newpass) return res; } -static void vm_change_password_shell(struct ast_vm_user *vmu, char *newpassword) -{ - char buf[255]; - snprintf(buf,255,"%s %s %s %s",ext_pass_cmd,vmu->context,vmu->mailbox,newpassword); - ast_safe_system(buf); -} - static void vm_change_password(struct ast_vm_user *vmu, char *newpassword) { /* There's probably a better way of doing this. */ @@ -694,6 +687,13 @@ static void vm_change_password(struct ast_vm_user *vmu, char *newpassword) } #endif +static void vm_change_password_shell(struct ast_vm_user *vmu, char *newpassword) +{ + char buf[255]; + snprintf(buf,255,"%s %s %s %s",ext_pass_cmd,vmu->context,vmu->mailbox,newpassword); + ast_safe_system(buf); +} + static int make_dir(char *dest, int len, char *context, char *ext, char *mailbox) { return snprintf(dest, len, "%s/voicemail/%s/%s/%s", (char *)ast_config_AST_SPOOL_DIR,context, ext, mailbox); -- GitLab