[Asterisk-cvs] asterisk app.c,1.21,1.22
markster at lists.digium.com
markster at lists.digium.com
Tue Jun 15 15:28:32 CDT 2004
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv11629
Modified Files:
app.c
Log Message:
Fix unexpected behavior in voicemail (bug #1856)
Index: app.c
===================================================================
RCS file: /usr/cvsroot/asterisk/app.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- app.c 1 Jun 2004 19:38:06 -0000 1.21
+++ app.c 15 Jun 2004 20:33:26 -0000 1.22
@@ -472,8 +472,9 @@
if (res == -1)
break;
+ /* if we get one of our stop chars, return it to the calling function */
if (stop && strchr(stop, res)) {
- res = 0;
+ /* res = 0; */
break;
}
}
More information about the svn-commits
mailing list