[asterisk-commits] sgriepentrog: branch certified-1.8.28 r421032 - /certified/branches/1.8.28/apps/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Aug 14 12:25:56 CDT 2014


Author: sgriepentrog
Date: Thu Aug 14 12:25:52 2014
New Revision: 421032

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=421032
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:
    certified/branches/1.8.28/apps/app_voicemail.c

Modified: certified/branches/1.8.28/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/certified/branches/1.8.28/apps/app_voicemail.c?view=diff&rev=421032&r1=421031&r2=421032
==============================================================================
--- certified/branches/1.8.28/apps/app_voicemail.c (original)
+++ certified/branches/1.8.28/apps/app_voicemail.c Thu Aug 14 12:25:52 2014
@@ -1637,7 +1637,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;
 			}
@@ -1680,7 +1680,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 asterisk-commits mailing list