diff --git a/include/parse.h b/include/parse.h index 8dce28a7a..b50e9bcf5 100644 --- a/include/parse.h +++ b/include/parse.h @@ -42,5 +42,6 @@ extern void mod_del_cmd(struct Message *msg); extern char *reconstruct_parv(int parc, const char *parv[]); extern struct Dictionary *alias_dict; +extern struct Dictionary *cmd_dict; #endif /* INCLUDED_parse_h_h */ diff --git a/ircd/parse.c b/ircd/parse.c index ca1ed7ebe..6691edb0d 100644 --- a/ircd/parse.c +++ b/ircd/parse.c @@ -44,7 +44,7 @@ #include "packet.h" #include "s_assert.h" -static struct Dictionary *cmd_dict = NULL; +struct Dictionary *cmd_dict = NULL; struct Dictionary *alias_dict = NULL; /* parv[0] is not used, and parv[LAST] == NULL */