Module: kamailio Branch: master Commit: c5ff6d9638b1033d2536ed46a7d254c016d8b103 URL: https://github.com/kamailio/kamailio/commit/c5ff6d9638b1033d2536ed46a7d254c0...
Author: Bastian Triller bastian.triller@gmail.com Committer: Henning Westerholt hw@gilawa.com Date: 2022-05-08T17:30:14+02:00
sanity: Fix typos
---
Modified: src/modules/sanity/sanity.c Modified: src/modules/sanity/sanity.h
---
Diff: https://github.com/kamailio/kamailio/commit/c5ff6d9638b1033d2536ed46a7d254c0... Patch: https://github.com/kamailio/kamailio/commit/c5ff6d9638b1033d2536ed46a7d254c0...
---
diff --git a/src/modules/sanity/sanity.c b/src/modules/sanity/sanity.c index 4264c2c190..f49d6e50c1 100644 --- a/src/modules/sanity/sanity.c +++ b/src/modules/sanity/sanity.c @@ -578,7 +578,7 @@ int check_cseq_value(sip_msg_t* msg) { return SANITY_CHECK_PASSED; }
-/* compare the Content-Length value with the accutal body length */ +/* compare the Content-Length value with the actual body length */ int check_cl(sip_msg_t* msg) { char *body;
diff --git a/src/modules/sanity/sanity.h b/src/modules/sanity/sanity.h index 339548edf4..0808cc99a5 100644 --- a/src/modules/sanity/sanity.h +++ b/src/modules/sanity/sanity.h @@ -48,7 +48,7 @@ int check_via_protocol(struct sip_msg* _msg); /* check if the SIP version in the Via header is 2.0 */ int check_via_sip_version(struct sip_msg* _msg);
-/* compare the Content-Length value with the accutal body length */ +/* compare the Content-Length value with the actual body length */ int check_cl(struct sip_msg* _msg);
/* compare the method in the CSeq header with the request line value */