Skip to content
Snippets Groups Projects
Commit fff27f46 authored by Mark Spencer's avatar Mark Spencer
Browse files

Change in-memory password when changing password

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@998 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent e0458e4c
No related branches found
No related tags found
No related merge requests found
......@@ -183,6 +183,27 @@ static struct ast_vm_user *find_user(struct ast_vm_user *ivm, char *context, cha
return vmu;
}
static int reset_user_pw(char *context, char *mailbox, char *newpass)
{
/* This function could be made to generate one from a database, too */
struct ast_vm_user *cur;
int res = -1;
ast_pthread_mutex_lock(&vmlock);
cur = users;
while(cur) {
if ((!context || !strcasecmp(context, cur->context)) &&
(!strcasecmp(mailbox, cur->mailbox)))
break;
cur=cur->next;
}
if (cur) {
strncpy(cur->password, newpass, sizeof(cur->password) - 1);
res = 0;
}
ast_pthread_mutex_unlock(&vmlock);
return res;
}
static int vm_change_password(struct ast_vm_user *vmu, char *newpassword)
{
/* There's probably a better way of doing this. */
......@@ -257,6 +278,8 @@ static int vm_change_password(struct ast_vm_user *vmu, char *newpassword)
unlink((char *)tmpin);
rename((char *)tmpout,(char *)tmpin);
reset_user_pw(vmu->context, vmu->mailbox, newpassword);
strncpy(vmu->password, newpassword, sizeof(vmu->password) - 1);
return(1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment