[Asterisk-cvs] asterisk/channels chan_sip.c,1.681,1.682

markster at lists.digium.com markster at lists.digium.com
Sat Mar 19 18:54:35 CST 2005


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv15038/channels

Modified Files:
	chan_sip.c 
Log Message:
Comment on sensitivity (bug #3802)


Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.681
retrieving revision 1.682
diff -u -d -r1.681 -r1.682
--- chan_sip.c	19 Mar 2005 23:40:19 -0000	1.681
+++ chan_sip.c	20 Mar 2005 00:49:31 -0000	1.682
@@ -694,7 +694,7 @@
 int find_sip_method(char *msg)
 {
 	int i, res = 0;
-
+	/* Strictly speaking, SIP methods are case SENSITIVE, but we don't check */
 	for (i=1; i< SIP_MAX_METHODS && !res; i++) {
 		if (!strcasecmp(sip_methods[i].text, msg)) 
 			res = sip_methods[i].id;




More information about the svn-commits mailing list