[svn-commits] sgriepentrog: branch 11 r419284 - /branches/11/apps/app_voicemail.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Jul 23 08:21:50 CDT 2014
Author: sgriepentrog
Date: Wed Jul 23 08:21:40 2014
New Revision: 419284
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=419284
Log:
app_voicemail: use a consistent generator string
When updating voicemail.conf when a user changes
their pin, change the generator string to be the
same as the module name when reading so that the
same config_hook will be called.
Review: https://reviewboard.asterisk.org/r/3837/
Modified:
branches/11/apps/app_voicemail.c
Modified: branches/11/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/apps/app_voicemail.c?view=diff&rev=419284&r1=419283&r2=419284
==============================================================================
--- branches/11/apps/app_voicemail.c (original)
+++ branches/11/apps/app_voicemail.c Wed Jul 23 08:21:40 2014
@@ -1749,7 +1749,7 @@
ast_test_suite_event_notify("PASSWORDCHANGED", "Message: voicemail.conf updated with new password\r\nPasswordSource: voicemail.conf");
reset_user_pw(vmu->context, vmu->mailbox, newpassword);
ast_copy_string(vmu->password, newpassword, sizeof(vmu->password));
- ast_config_text_file_save(VOICEMAIL_CONFIG, cfg, "AppVoicemail");
+ ast_config_text_file_save(VOICEMAIL_CONFIG, cfg, "app_voicemail");
ast_config_destroy(cfg);
break;
}
@@ -1792,7 +1792,7 @@
ast_test_suite_event_notify("PASSWORDCHANGED", "Message: users.conf updated with new password\r\nPasswordSource: users.conf");
reset_user_pw(vmu->context, vmu->mailbox, newpassword);
ast_copy_string(vmu->password, newpassword, sizeof(vmu->password));
- ast_config_text_file_save("users.conf", cfg, "AppVoicemail");
+ ast_config_text_file_save("users.conf", cfg, "app_voicemail");
}
ast_config_destroy(cfg);
More information about the svn-commits
mailing list