summaryrefslogtreecommitdiff
path: root/channels/chan_sip.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-03-20 00:49:31 +0000
committerMark Spencer <markster@digium.com>2005-03-20 00:49:31 +0000
commit7353c879b09ef610acc1906831c428945abfb7c9 (patch)
treec5917cea19b883fe2c9031a73daf5c4031b68a3e /channels/chan_sip.c
parent2af27476343cb3d08bcf6d04fa252ea7836e4d5f (diff)
Comment on sensitivity (bug #3802)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5209 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_sip.c')
-rwxr-xr-xchannels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 8c80bd65c..027704591 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -694,7 +694,7 @@ static const struct ast_channel_tech sip_tech = {
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;