0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

Merge branch 'master+umodes' of https://github.com/Adam-/charybdis

This commit is contained in:
Jilles Tjoelker 2014-05-19 23:37:20 +02:00
commit 69f4561b39
2 changed files with 2 additions and 2 deletions

View file

@ -555,7 +555,7 @@ burst_modes_TS6(struct Client *client_p, struct Channel *chptr,
static void static void
burst_TS6(struct Client *client_p) burst_TS6(struct Client *client_p)
{ {
static char ubuf[12]; char ubuf[BUFSIZE];
struct Client *target_p; struct Client *target_p;
struct Channel *chptr; struct Channel *chptr;
struct membership *msptr; struct membership *msptr;

View file

@ -592,7 +592,7 @@ register_local_user(struct Client *client_p, struct Client *source_p, const char
int int
introduce_client(struct Client *client_p, struct Client *source_p, struct User *user, const char *nick, int use_euid) introduce_client(struct Client *client_p, struct Client *source_p, struct User *user, const char *nick, int use_euid)
{ {
static char ubuf[12]; char ubuf[BUFSIZE];
struct Client *identifyservice_p; struct Client *identifyservice_p;
char *p; char *p;
hook_data_umode_changed hdata; hook_data_umode_changed hdata;