aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-17 15:08:55 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-17 15:08:55 +0000
commitc5d6a9b0c365b9202acd08bd496e08e37ae32187 (patch)
tree92bc4f38c0da3cd8889453ce2379a5be64f07c04 /apps
parente69144f5ee7ad676bd1065af31e7c24a3b46dcb5 (diff)
Fix missing NULL (bug #3078)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4472 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 5eccd6d40..751cde0ff 100755
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -427,7 +427,7 @@ static int change_password_realtime(struct ast_vm_user *vmu, const char *passwor
{
int res;
if (!ast_strlen_zero(vmu->uniqueid)) {
- res = ast_update_realtime("voicemail", "uniqueid", vmu->uniqueid, "password", password);
+ res = ast_update_realtime("voicemail", "uniqueid", vmu->uniqueid, "password", password, NULL);
if (!res)
strncpy(vmu->password, password, sizeof(vmu->password) - 1);
return res;