use case-insensitive comparisons for headears (issue #5023)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6423 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-08-26 20:04:28 +00:00
parent ed63297dfd
commit da627fc643

View File

@@ -5290,7 +5290,7 @@ static int parse_contact(struct sip_pvt *pvt, struct sip_peer *p, struct sip_req
struct sockaddr_in oldsin;
if (ast_strlen_zero(expires)) { /* No expires header */
expires = strstr(get_header(req, "Contact"), "expires=");
expires = strcasestr(get_header(req, "Contact"), "expires=");
if (expires) {
if (sscanf(expires + 8, "%d;", &expiry) != 1)
expiry = default_expiry;
@@ -8722,7 +8722,7 @@ static int handle_response_register(struct sip_pvt *p, int resp, char *rest, str
} else
break;
}
tmptmp = strstr(contact, "expires=");
tmptmp = strcasestr(contact, "expires=");
if (tmptmp) {
if (sscanf(tmptmp + 8, "%d;", &expires) != 1)
expires = 0;