Skip to content

Commit

Permalink
tls: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Dec 28, 2022
1 parent 5ac1ce5 commit 8bf11c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/tls/tls_domain.c
Expand Up @@ -397,7 +397,7 @@ static int ksr_tls_fill_missing(tls_domain_t* d, tls_domain_t* parent)
* @param ctx SSL context
* @param larg ?
* @param parg ?
* @return return 0 on succes, <0 on critical error
* @return return 0 on success, <0 on critical error
*/
typedef int (*per_ctx_cbk_f)(SSL_CTX* ctx, long larg, void* parg);

Expand Down
2 changes: 1 addition & 1 deletion src/modules/tls/tls_init.h
Expand Up @@ -18,7 +18,7 @@

/*!
* \file
* \brief Kamailio TLS support :: OpenSSL initialization funtions
* \brief Kamailio TLS support :: OpenSSL initialization functions
* \ingroup tls
* Module: \ref tls
*/
Expand Down
2 changes: 1 addition & 1 deletion src/modules/tls/tls_server.c
Expand Up @@ -606,7 +606,7 @@ static int tls_shutdown(struct tcp_connection *c)
DBG("TLS shutdown successful\n");
return 0;
} else if (ret == 0) {
DBG("First phase of 2-way handshake completed succesfuly\n");
DBG("First phase of 2-way handshake completed successfully\n");
return 0;
} else {
err = SSL_get_error(ssl, ret);
Expand Down

0 comments on commit 8bf11c8

Please sign in to comment.