[Asterisk-cvs] asterisk/channels chan_sip.c,1.307,1.308
malcolmd at lists.digium.com
malcolmd at lists.digium.com
Sun Mar 14 21:12:46 CST 2004
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv8839/channels
Modified Files:
chan_sip.c
Log Message:
Bug #1213. Fix for improperly specified Content-Length header
Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.307
retrieving revision 1.308
diff -u -d -r1.307 -r1.308
--- chan_sip.c 14 Mar 2004 22:13:18 -0000 1.307
+++ chan_sip.c 15 Mar 2004 02:06:47 -0000 1.308
@@ -3266,7 +3266,7 @@
add_header(&req, "Expires", tmp);
add_header(&req, "Contact", p->our_contact);
add_header(&req, "Event", "registration");
- add_header(&req, "Content-length", "0");
+ add_header(&req, "Content-Length", "0");
add_blank_header(&req);
copy_request(&p->initreq, &req);
parse(&p->initreq);
More information about the svn-commits
mailing list