[Asterisk-cvs] asterisk/apps app_voicemail.c,1.111,1.112
citats at lists.digium.com
citats at lists.digium.com
Mon Jun 14 15:35:37 CDT 2004
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/home/citats/cvs/asterisk/apps
Modified Files:
app_voicemail.c
Log Message:
Fix MailboxExists to follow the original behavior of jumping to +101 if the voicemailuser exists
Index: app_voicemail.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_voicemail.c,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -d -r1.111 -r1.112
--- app_voicemail.c 13 Jun 2004 21:25:10 -0000 1.111
+++ app_voicemail.c 14 Jun 2004 20:40:14 -0000 1.112
@@ -3474,7 +3474,7 @@
context++;
}
- if ((!find_user(&svm, context, box))) {
+ if (find_user(&svm, context, box)) {
if (ast_exists_extension(chan, chan->context, chan->exten, chan->priority + 101, chan->callerid)) {
chan->priority += 100;
} else
More information about the svn-commits
mailing list