X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/041d54ff4b1dd537968519863fcd4d8d55e0c911..8ee12f0c437eec8aa42af7b350c7e2a3ccafedbc:/modules/m_rehash.c diff --git a/modules/m_rehash.c b/modules/m_rehash.c index dc81c431..8bddf18e 100644 --- a/modules/m_rehash.c +++ b/modules/m_rehash.c @@ -28,7 +28,7 @@ #include "client.h" #include "channel.h" #include "common.h" -#include "irc_string.h" +#include "match.h" #include "ircd.h" #include "s_serv.h" #include "numeric.h" @@ -285,8 +285,8 @@ do_rehash(struct Client *source_p, const char *type) for (x = 0; rehash_commands[x].cmd != NULL && rehash_commands[x].handler != NULL; x++) { - strlcat(cmdbuf, " ", sizeof(cmdbuf)); - strlcat(cmdbuf, rehash_commands[x].cmd, sizeof(cmdbuf)); + rb_strlcat(cmdbuf, " ", sizeof(cmdbuf)); + rb_strlcat(cmdbuf, rehash_commands[x].cmd, sizeof(cmdbuf)); } sendto_one_notice(source_p, ":rehash one of:%s", cmdbuf); }