Module: kamailio Branch: master Commit: 741577013fba2689de93cb587c4b750c15f9c29e URL: https://github.com/kamailio/kamailio/commit/741577013fba2689de93cb587c4b750c...
Author: Victor Seva linuxmaniac@torreviejawireless.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2018-02-08T09:32:30+01:00
jsonrpcs: fix typos
Thanks, lintian
I: kamailio: spelling-error-in-binary usr/lib/x86_64-linux-gnu/kamailio/modules/jsonrpcs.so existance existence I: kamailio: spelling-error-in-binary usr/lib/x86_64-linux-gnu/kamailio/modules/jsonrpcs.so lenght length
---
Modified: src/modules/jsonrpcs/jsonrpcs_sock.c
---
Diff: https://github.com/kamailio/kamailio/commit/741577013fba2689de93cb587c4b750c... Patch: https://github.com/kamailio/kamailio/commit/741577013fba2689de93cb587c4b750c...
---
diff --git a/src/modules/jsonrpcs/jsonrpcs_sock.c b/src/modules/jsonrpcs/jsonrpcs_sock.c index 3529941f1d..dd20902879 100644 --- a/src/modules/jsonrpcs/jsonrpcs_sock.c +++ b/src/modules/jsonrpcs/jsonrpcs_sock.c @@ -106,7 +106,7 @@ int jsonrpc_dgram_mod_init(void) int sep;
/* checking the mi_socket module param */ - LM_DBG("testing socket existance...\n"); + LM_DBG("testing socket existence...\n");
if( jsonrpc_dgram_socket==NULL || *jsonrpc_dgram_socket == 0) { LM_ERR("no DATAGRAM_ socket configured\n"); @@ -118,7 +118,7 @@ int jsonrpc_dgram_mod_init(void) memset( &jsonrpc_dgram_addr, 0, sizeof(jsonrpc_dgram_sockaddr_t) );
if(strlen(jsonrpc_dgram_socket)<6) { - LM_ERR("lenght of socket address is too short: %s\n", + LM_ERR("length of socket address is too short: %s\n", jsonrpc_dgram_socket); return -1; }