Module: kamailio
Branch: master
Commit: 4cd55a86cdc3477da0ca4c384227833ec404bfa2
URL:
https://github.com/kamailio/kamailio/commit/4cd55a86cdc3477da0ca4c384227833…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2021-06-02T21:22:48+02:00
textops: find_hdr_line_start() - search for header name with colon
---
Modified: src/modules/textops/textops.c
---
Diff:
https://github.com/kamailio/kamailio/commit/4cd55a86cdc3477da0ca4c384227833…
Patch:
https://github.com/kamailio/kamailio/commit/4cd55a86cdc3477da0ca4c384227833…
---
diff --git a/src/modules/textops/textops.c b/src/modules/textops/textops.c
index e93bc82bf2..75a00f16a8 100644
--- a/src/modules/textops/textops.c
+++ b/src/modules/textops/textops.c
@@ -1619,7 +1619,7 @@ static inline int find_hdr_line_start(char *hname, unsigned int
hname_len,
while (hname_len <= len) {
/* attempt to find a header name */
- parse_sip_header_name(start, start + hname_len, &h2, 1, 0);
+ parse_sip_header_name(start, start + hname_len, &h2, 0, 0);
if(h2.type!=HDR_ERROR_T) {
if(h1.type>0 && h1.type==h2.type) {
*buf = start;