Skip to content

Commit

Permalink
ctl: fix typos
Browse files Browse the repository at this point in the history
Thanks, lintian
> I: kamailio: spelling-error-in-binary usr/lib/x86_64-linux-gnu/kamailio/modules/ctl.so emtpy empty
> I: kamailio: spelling-error-in-binary usr/lib/x86_64-linux-gnu/kamailio/modules/ctl.so errror error
  • Loading branch information
linuxmaniac committed Feb 7, 2018
1 parent bbb7920 commit 22ba499
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/ctl/binrpc_run.c
Expand Up @@ -700,7 +700,7 @@ int process_rpc_req(unsigned char* buf, int size, int* bytes_needed,
error:
if (f_ctx.replied==0){
rpc_fault(&f_ctx, 500, "internal server error");
LOG(L_ERR, "ERROR: unknown rpc errror\n");
LOG(L_ERR, "ERROR: unknown rpc error\n");
}
*bytes_needed=0; /* we don't need anymore crap */
destroy_binrpc_ctx(&f_ctx);
Expand Down
2 changes: 1 addition & 1 deletion src/modules/ctl/fifo_server.c
Expand Up @@ -819,7 +819,7 @@ int init_fifo_fd(char* fifo, int fifo_mode, int fifo_uid, int fifo_gid,
return -1;
}
if (strlen(fifo) == 0) {
ERR("emtpy fifo: fifo disabled\n");
ERR("empty fifo: fifo disabled\n");
return -1;
}

Expand Down
2 changes: 1 addition & 1 deletion src/modules/ctl/io_listener.c
Expand Up @@ -711,7 +711,7 @@ inline static int handle_io(struct fd_map* fm, short events, int idx)
break;
#endif
case F_T_RESERVED:
LOG(L_CRIT, "BUG: io listen handle_io: emtpy fd map\n");
LOG(L_CRIT, "BUG: io listen handle_io: empty fd map\n");
goto error;
default:
LOG(L_CRIT, "BUG: io listen handle_io: unknown fd type %d\n",
Expand Down

0 comments on commit 22ba499

Please sign in to comment.