Module: kamailio Branch: master Commit: 236fed5a83d0c5b139557d43c17e81dbb4bf9373 URL: https://github.com/kamailio/kamailio/commit/236fed5a83d0c5b139557d43c17e81db...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2016-12-04T22:07:56+01:00
jsonrpc-s: fixed typo in log message
---
Modified: modules/jsonrpc-s/jsonrpcs_sock.c
---
Diff: https://github.com/kamailio/kamailio/commit/236fed5a83d0c5b139557d43c17e81db... Patch: https://github.com/kamailio/kamailio/commit/236fed5a83d0c5b139557d43c17e81db...
---
diff --git a/modules/jsonrpc-s/jsonrpcs_sock.c b/modules/jsonrpc-s/jsonrpcs_sock.c index 223dd05..7d62490 100644 --- a/modules/jsonrpc-s/jsonrpcs_sock.c +++ b/modules/jsonrpc-s/jsonrpcs_sock.c @@ -531,7 +531,7 @@ static int jsonrpc_dgram_send_data(int fd, char* buf, unsigned int len, /*LM_DBG("destination address length is %i\n", tolen);*/ n=sendto(fd, buf, len, 0, to, tolen); if(n!=len) { - LM_ERR("failed to sent the response (%d - %d:%s)\n", + LM_ERR("failed to send the response (%d - %d - %s)\n", n, errno, strerror(errno)); return n; }