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: 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: 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: 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: 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,
Module: kamailio
Branch: master
Commit: 4b2b8925c2c8f195f135ff262f7b45601b111b0d
URL: https://github.com/kamailio/kamailio/commit/4b2b8925c2c8f195f135ff262f7b456…
Author: Bastian Triller <bastian.triller(a)gmail.com>
Committer: Henning Westerholt <hw(a)gilawa.com>
Date: 2022-05-08T17:30:14+02:00
lib: Fix typos
---
Modified: src/lib/cds/dstring.h
Modified: src/lib/srdb1/schema/uid_credentials.xml
Modified: src/lib/srdb2/db_cmd.c
Modified: src/lib/srdb2/schema/credentials.xml
---
Diff: https://github.com/kamailio/kamailio/commit/4b2b8925c2c8f195f135ff262f7b456…
Patch: https://github.com/kamailio/kamailio/commit/4b2b8925c2c8f195f135ff262f7b456…
---
diff --git a/src/lib/cds/dstring.h b/src/lib/cds/dstring.h
index 039ed2b099..5dc2de5c91 100644
--- a/src/lib/cds/dstring.h
+++ b/src/lib/cds/dstring.h
@@ -77,7 +77,7 @@ typedef struct _dstring_t {
/** predefined buffer size */
int buff_size;
- /** a operation on this string was unsuccesfull ->
+ /** a operation on this string was unsuccessful ->
* all other operations will produce error */
int error;
} dstring_t;
diff --git a/src/lib/srdb1/schema/uid_credentials.xml b/src/lib/srdb1/schema/uid_credentials.xml
index 8391e28e1c..d0089693e0 100644
--- a/src/lib/srdb1/schema/uid_credentials.xml
+++ b/src/lib/srdb1/schema/uid_credentials.xml
@@ -16,7 +16,7 @@
users identified by uid. Credentials can be used in digest authentication
in SIP and/or authentication in SERWeb. In most situations credentials for
digest authentication and SERWeb authentication are same. There are cases,
- however, where seperate credentials for SERWeb and separate credentials
+ however, where separate credentials for SERWeb and separate credentials
for digest authentication may be needed. One such example are setups where
subscribers get HW user agents with locked configuration and thay do not
know the password and are not allowed to change it. If they should be able
diff --git a/src/lib/srdb2/db_cmd.c b/src/lib/srdb2/db_cmd.c
index 0adeca646a..691b5f2999 100644
--- a/src/lib/srdb2/db_cmd.c
+++ b/src/lib/srdb2/db_cmd.c
@@ -73,8 +73,8 @@ db_cmd_t* db_cmd(enum db_cmd_type type, db_ctx_t* ctx, char* table,
}
/* FIXME: This should be redesigned so that we do not need to connect
- * connections in context before comands are created, this takes splitting
- * the command initializatio sequence in two steps, one would be creating
+ * connections in context before commands are created, this takes splitting
+ * the command initialization sequence in two steps, one would be creating
* all the data structures and the second would be checking corresponding
* fields and tables on the server.
*/
diff --git a/src/lib/srdb2/schema/credentials.xml b/src/lib/srdb2/schema/credentials.xml
index 8bc7809fbf..a6c3ccadfb 100644
--- a/src/lib/srdb2/schema/credentials.xml
+++ b/src/lib/srdb2/schema/credentials.xml
@@ -15,7 +15,7 @@
users identified by uid. Credentials can be used in digest authentication
in SIP and/or authentication in SERWeb. In most situations credentials for
digest authentication and SERWeb authentication are same. There are cases,
- however, where seperate credentials for SERWeb and separate credentials
+ however, where separate credentials for SERWeb and separate credentials
for digest authentication may be needed. One such example are setups where
subscribers get HW user agents with locked configuration and thay do not
know the password and are not allowed to change it. If they should be able