[Asterisk-cvs] asterisk/apps app_voicemail.c,1.88,1.89
markster at lists.digium.com
markster at lists.digium.com
Tue May 11 10:53:45 CDT 2004
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv23378/apps
Modified Files:
app_voicemail.c
Log Message:
Change "boundary" to be less likely to cause e-mail conflicts (bug #1602)
Index: app_voicemail.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_voicemail.c,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -d -r1.88 -r1.89
--- app_voicemail.c 10 May 2004 13:27:39 -0000 1.88
+++ app_voicemail.c 11 May 2004 15:03:52 -0000 1.89
@@ -862,7 +862,7 @@
fprintf(p, "MIME-Version: 1.0\n");
if (attach_user_voicemail) {
/* Something unique. */
- snprintf(bound, sizeof(bound), "Boundary=%d%s%d", msgnum, mailbox, getpid());
+ snprintf(bound, sizeof(bound), "voicemail_%d%s%d", msgnum, mailbox, getpid());
fprintf(p, "Content-Type: multipart/mixed; boundary=\"%s\"\n\n\n", bound);
More information about the svn-commits
mailing list