[Asterisk-cvs] asterisk/apps app_voicemail.c,1.86,1.87
markster at lists.digium.com
markster at lists.digium.com
Mon May 10 09:08:18 CDT 2004
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv16029/apps
Modified Files:
app_voicemail.c
Log Message:
Set mimetype to lower case (bug #1597)
Index: app_voicemail.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_voicemail.c,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- app_voicemail.c 1 May 2004 23:28:33 -0000 1.86
+++ app_voicemail.c 10 May 2004 13:18:12 -0000 1.87
@@ -863,7 +863,7 @@
/* Something unique. */
snprintf(bound, sizeof(bound), "Boundary=%d%s%d", msgnum, mailbox, getpid());
- fprintf(p, "Content-Type: MULTIPART/MIXED; BOUNDARY=\"%s\"\n\n\n", bound);
+ fprintf(p, "Content-Type: multipart/mixed; boundary=\"%s\"\n\n\n", bound);
fprintf(p, "--%s\n", bound);
}
More information about the svn-commits
mailing list