Module: kamailio
Branch: master
Commit: c5ff6d9638b1033d2536ed46a7d254c016d8b103
URL: https://github.com/kamailio/kamailio/commit/c5ff6d9638b1033d2536ed46a7d254c…
Author: Bastian Triller <bastian.triller(a)gmail.com>
Committer: Henning Westerholt <hw(a)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/c5ff6d9638b1033d2536ed46a7d254c…
Patch: https://github.com/kamailio/kamailio/commit/c5ff6d9638b1033d2536ed46a7d254c…
---
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 */
Module: kamailio
Branch: master
Commit: ff9b030be39f82d0e952301ddd0b61a0de5a8041
URL: https://github.com/kamailio/kamailio/commit/ff9b030be39f82d0e952301ddd0b61a…
Author: Bastian Triller <bastian.triller(a)gmail.com>
Committer: Henning Westerholt <hw(a)gilawa.com>
Date: 2022-05-08T17:30:14+02:00
tls: Fix typos
---
Modified: src/modules/tls/tls_server.c
---
Diff: https://github.com/kamailio/kamailio/commit/ff9b030be39f82d0e952301ddd0b61a…
Patch: https://github.com/kamailio/kamailio/commit/ff9b030be39f82d0e952301ddd0b61a…
---
diff --git a/src/modules/tls/tls_server.c b/src/modules/tls/tls_server.c
index 7004096adf..00686a07dd 100644
--- a/src/modules/tls/tls_server.c
+++ b/src/modules/tls/tls_server.c
@@ -737,7 +737,7 @@ void tls_h_tcpconn_close_f(struct tcp_connection *c, int fd)
tls_mbuf_init(&rd, 0, 0); /* no read */
tls_mbuf_init(&wr, wr_buf, sizeof(wr_buf));
if (tls_set_mbufs(c, &rd, &wr)==0) {
- tls_shutdown(c); /* shudown only on succesfull set fd */
+ tls_shutdown(c); /* shutdown only on successful set fd */
/* write as much as possible and update wr.
* Since this is a close, we don't want to queue the write
* (if it can't write immediately, just fail silently)
Module: kamailio
Branch: master
Commit: f72c574372abf4c0286799137896a247ed6269b6
URL: https://github.com/kamailio/kamailio/commit/f72c574372abf4c0286799137896a24…
Author: Bastian Triller <bastian.triller(a)gmail.com>
Committer: Henning Westerholt <hw(a)gilawa.com>
Date: 2022-05-08T17:30:14+02:00
uid_auth_db: Fix typos
---
Modified: src/modules/uid_auth_db/authorize.c
---
Diff: https://github.com/kamailio/kamailio/commit/f72c574372abf4c0286799137896a24…
Patch: https://github.com/kamailio/kamailio/commit/f72c574372abf4c0286799137896a24…
---
diff --git a/src/modules/uid_auth_db/authorize.c b/src/modules/uid_auth_db/authorize.c
index 0dd155adda..a71fd45793 100644
--- a/src/modules/uid_auth_db/authorize.c
+++ b/src/modules/uid_auth_db/authorize.c
@@ -216,7 +216,7 @@ static int generate_avps(db_res_t* result, db_rec_t *row)
/* this is a dirty work around to check the credentials of all users,
* if the database query returned more then one result
*
- * Fills res (which must be db_free'd afterwards if the call was succesfull)
+ * Fills res (which must be db_free'd afterwards if the call was successful)
* returns 0 on success, 1 on no match (?)
* and -1 on error (memory, db a.s.o).
* WARNING: if -1 is returned res _must_ _not_ be freed (it's empty)
Module: kamailio
Branch: master
Commit: f6da37aa7dec1cdc5a737ed354a68ae15cfc7a43
URL: https://github.com/kamailio/kamailio/commit/f6da37aa7dec1cdc5a737ed354a68ae…
Author: Bastian Triller <bastian.triller(a)gmail.com>
Committer: Henning Westerholt <hw(a)gilawa.com>
Date: 2022-05-08T17:30:14+02:00
ldap: Fix typos
---
Modified: src/modules/ldap/doc/ldap_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/f6da37aa7dec1cdc5a737ed354a68ae…
Patch: https://github.com/kamailio/kamailio/commit/f6da37aa7dec1cdc5a737ed354a68ae…
---
diff --git a/src/modules/ldap/doc/ldap_admin.xml b/src/modules/ldap/doc/ldap_admin.xml
index 0e3f146ef7..5778e2ebf5 100644
--- a/src/modules/ldap/doc/ldap_admin.xml
+++ b/src/modules/ldap/doc/ldap_admin.xml
@@ -616,7 +616,7 @@ ldap_result("telephoneNumber/$avp(s:tel_number)");
<varname>int</varname> for integer. If <varname>avp_type</varname> is specified as
<varname>int</varname> then <varname>ldap_result</varname> tries to convert the LDAP
attribute values to integer. In this case, the values are only stored as AVP if the
- conversion to integer is succesfull.
+ conversion to integer is successful.
</para>
<variablelist>
Module: kamailio
Branch: master
Commit: 4caf7e70c09a5b61f5c28b89fa1ea5c951e4cbc0
URL: https://github.com/kamailio/kamailio/commit/4caf7e70c09a5b61f5c28b89fa1ea5c…
Author: Bastian Triller <bastian.triller(a)gmail.com>
Committer: Henning Westerholt <hw(a)gilawa.com>
Date: 2022-05-08T17:30:14+02:00
ctl: Fix typos
---
Modified: src/modules/ctl/binrpc.h
---
Diff: https://github.com/kamailio/kamailio/commit/4caf7e70c09a5b61f5c28b89fa1ea5c…
Patch: https://github.com/kamailio/kamailio/commit/4caf7e70c09a5b61f5c28b89fa1ea5c…
---
diff --git a/src/modules/ctl/binrpc.h b/src/modules/ctl/binrpc.h
index bb34cd3be5..da4524878c 100644
--- a/src/modules/ctl/binrpc.h
+++ b/src/modules/ctl/binrpc.h
@@ -694,7 +694,7 @@ inline static int binrpc_bytes_needed(struct binrpc_parse_ctx *ctx)
* known problems: no support for arrays inside STRUCT
* param smode: allow simple vals inside struct (needed for
* not-strict-formatted rpc responses)
- * returns position after the record and *err==0 if succesfull
+ * returns position after the record and *err==0 if successful
* original position and *err<0 if not */
inline static unsigned char* binrpc_read_record(struct binrpc_parse_ctx* ctx,
unsigned char* buf,
@@ -829,7 +829,7 @@ inline static unsigned char* binrpc_read_record(struct binrpc_parse_ctx* ctx,
}
break;
case BINRPC_T_DOUBLE: /* FIXME: hack: represented as fixed point
- inside an long long */
+ inside a long long */
if (ctx->in_struct && smode==0) goto error_record;
p=binrpc_read_llong(&ll, len, p, end, err);
v->u.fval=((double)ll)/1000;
Module: kamailio
Branch: master
Commit: ba3f7d5157819d55a67a054de1b7d0f8fc521140
URL: https://github.com/kamailio/kamailio/commit/ba3f7d5157819d55a67a054de1b7d0f…
Author: Bastian Triller <bastian.triller(a)gmail.com>
Committer: Henning Westerholt <hw(a)gilawa.com>
Date: 2022-05-08T17:30:14+02:00
auth: Fix typos
---
Modified: src/modules/auth/challenge.c
Modified: src/modules/auth/nonce.c
---
Diff: https://github.com/kamailio/kamailio/commit/ba3f7d5157819d55a67a054de1b7d0f…
Patch: https://github.com/kamailio/kamailio/commit/ba3f7d5157819d55a67a054de1b7d0f…
---
diff --git a/src/modules/auth/challenge.c b/src/modules/auth/challenge.c
index 93142391b4..c5a769ed21 100644
--- a/src/modules/auth/challenge.c
+++ b/src/modules/auth/challenge.c
@@ -81,7 +81,7 @@ void strip_realm(str* _realm)
* @param nonce_len A value/result parameter. Initially it contains the
* nonce buffer length. If the length is too small, it
* will be set to the needed length and the function will
- * return error immediately. After a succesfull call it will
+ * return error immediately. After a successful call it will
* contain the size of nonce written into the buffer,
* without the terminating 0.
* @param cfg This is the value of one of the three module parameters that
diff --git a/src/modules/auth/nonce.c b/src/modules/auth/nonce.c
index 4ec4d0a3af..b07515084a 100644
--- a/src/modules/auth/nonce.c
+++ b/src/modules/auth/nonce.c
@@ -158,12 +158,12 @@ inline static int calc_bin_nonce_md5(union bin_nonce* b_nonce, int cfg,
* This function creates the nonce string as it will be sent to the
* user agent in digest challenge. The format of the nonce string
* depends on the value of three module parameters, auth_checks_register,
- * auth_checks_no_dlg, and auth_checks_in_dlg. These module parameters
- * control the amount of information from the SIP requst that will be
+ * auth_checks_no_dlg and auth_checks_in_dlg. These module parameters
+ * control the amount of information from the SIP request that will be
* stored in the nonce string for verification purposes.
*
* If all three parameters contain zero then the nonce string consists
- * of time in seconds since 1.1. 1970 and a secret phrase:
+ * of time in seconds since 1.1.1970 and a secret phrase:
* <expire_time> <valid_since> MD5(<expire_time>, <valid_since>, secret)
* If any of the parameters is not zero (some optional checks are enabled
* then the nonce string will also contain MD5 hash of selected parts
@@ -175,7 +175,7 @@ inline static int calc_bin_nonce_md5(union bin_nonce* b_nonce, int cfg,
* @param nonce_len A value/result parameter. Initially it contains the
* nonce buffer length. If the length is too small, it
* will be set to the needed length and the function will
- * return error immediately. After a succesfull call it will
+ * return error immediately. After a successful call it will
* contain the size of nonce written into the buffer,
* without the terminating 0.
* @param cfg This is the value of one of the three module parameters that
@@ -187,7 +187,7 @@ inline static int calc_bin_nonce_md5(union bin_nonce* b_nonce, int cfg,
* @param n_id Nounce count and/or one-time nonce index value
* (32 bit counter)
* @param pf First 2 bits are flags, the rest is the index pool number
- * used if nonce counts or one-time nonces are enabled.
+ * used if nonce counts or one-time nonces are enabled.
* The possible flags values are: NF_VALID_NC_ID which means
* the nonce-count support is enabled and NF_VALID_OT_ID
* which means the one-time nonces support is enabled.
@@ -200,7 +200,7 @@ inline static int calc_bin_nonce_md5(union bin_nonce* b_nonce, int cfg,
* MD5(<msg_parts(auth_extra_checks)>, secret2).
* @param msg The message for which the nonce is computed. If
* auth_extra_checks is set, the MD5 of some fields of the
- * message will be included in the generated nonce.
+ * message will be included in the generated nonce.
* @return 0 on success and -1 on error
*/
int calc_nonce(char* nonce, int *nonce_len, int cfg, int since, int expires,