modules/core/m_join.c: remove global variable modebuf

This commit is contained in:
Simon Arlott 2017-07-29 23:15:14 +01:00 committed by Aaron Jones
parent 18823bcfca
commit 75399a9334
No known key found for this signature in database
GPG key ID: 8AF0737488AB3012

View file

@ -81,7 +81,6 @@ static void remove_our_modes(struct Channel *chptr, struct Client *source_p);
static void remove_ban_list(struct Channel *chptr, struct Client *source_p,
rb_dlink_list * list, char c, int mems);
static char modebuf[MODEBUFLEN];
static char parabuf[MODEBUFLEN];
/* Check what we will forward to, without sending any notices to the user
@ -391,6 +390,7 @@ m_join(struct Client *client_p, struct Client *source_p, int parc, const char *p
static int
ms_join(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
{
static char modebuf[MODEBUFLEN];
struct Channel *chptr;
static struct Mode mode;
time_t oldts;
@ -511,6 +511,7 @@ ms_join(struct Client *client_p, struct Client *source_p, int parc, const char *
static int
ms_sjoin(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
{
static char modebuf[MODEBUFLEN];
static char buf_uid[BUFSIZE];
static const char empty_modes[] = "0";
struct Channel *chptr;