Comment on sensitivity (bug #3802)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5209 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2005-03-20 00:49:31 +00:00
parent 2af2747634
commit 7353c879b0
1 changed files with 1 additions and 1 deletions

View File

@ -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;