ircd: log command in mod_add_cmd/mod_del_cmd error scenarios
This commit is contained in:
parent
4212494106
commit
84a3275b7a
1 changed files with 4 additions and 1 deletions
|
@ -294,6 +294,7 @@ mod_add_cmd(struct Message *msg)
|
|||
return;
|
||||
|
||||
if (rb_dictionary_find(cmd_dict, msg->cmd) != NULL) {
|
||||
ilog(L_MAIN, "Add command: %s already exists", msg->cmd);
|
||||
s_assert(0);
|
||||
return;
|
||||
}
|
||||
|
@ -318,8 +319,10 @@ mod_del_cmd(struct Message *msg)
|
|||
if(msg == NULL)
|
||||
return;
|
||||
|
||||
if (rb_dictionary_delete(cmd_dict, msg->cmd) == NULL)
|
||||
if (rb_dictionary_delete(cmd_dict, msg->cmd) == NULL) {
|
||||
ilog(L_MAIN, "Delete command: %s not found", msg->cmd);
|
||||
s_assert(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* cancel_clients()
|
||||
|
|
Loading…
Reference in a new issue