diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index f20d6d02984036573cf69895c7a49d435fd570a1..4684e6fedd172d144be2f94cadb7e340d4770367 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);