[asterisk-commits] trunk r12924 - /trunk/apps/app_voicemail.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Mar 14 11:11:43 MST 2006
Author: russell
Date: Tue Mar 14 12:11:35 2006
New Revision: 12924
URL: http://svn.digium.com/view/asterisk?rev=12924&view=rev
Log:
add a couple of variables to clarify some code (issue #6700)
Modified:
trunk/apps/app_voicemail.c
Modified: trunk/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_voicemail.c?rev=12924&r1=12923&r2=12924&view=diff
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Tue Mar 14 12:11:35 2006
@@ -5948,6 +5948,8 @@
char *fmt;
char *astemail;
char *astmailcmd = SENDMAIL;
+ char *astforcename;
+ char *astforcegreet;
char *s,*q,*stringp;
char *dialoutcxt = NULL;
char *callbackcxt = NULL;
@@ -6119,14 +6121,14 @@
}
/* Force new user to record name ? */
- if (!(astattach = ast_variable_retrieve(cfg, "general", "forcename")))
- astattach = "no";
- ast_set2_flag((&globalflags), ast_true(astattach), VM_FORCENAME);
+ if (!(astforcename = ast_variable_retrieve(cfg, "general", "forcename")))
+ astforcename = "no";
+ ast_set2_flag((&globalflags), ast_true(astforcename), VM_FORCENAME);
/* Force new user to record greetings ? */
- if (!(astattach = ast_variable_retrieve(cfg, "general", "forcegreetings")))
- astattach = "no";
- ast_set2_flag((&globalflags), ast_true(astattach), VM_FORCEGREET);
+ if (!(astforcegreet = ast_variable_retrieve(cfg, "general", "forcegreetings")))
+ astforcegreet = "no";
+ ast_set2_flag((&globalflags), ast_true(astforcegreet), VM_FORCEGREET);
if ((s = ast_variable_retrieve(cfg, "general", "cidinternalcontexts"))){
ast_log(LOG_DEBUG,"VM_CID Internal context string: %s\n",s);
More information about the asterisk-commits
mailing list