1
0
Fork 0
This commit is contained in:
Test_User 2024-04-28 08:02:01 -04:00
parent 5fad1a35f5
commit 7fb084ec64
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@
#include "tls.h"
#include "config.h"
char channel_mode_types[UCHAR_MAX] = {
char channel_mode_types[UCHAR_MAX+1] = {
['v'] = MODE_TYPE_USERS,
['h'] = MODE_TYPE_USERS,
['o'] = MODE_TYPE_USERS,

View file

@ -104,7 +104,7 @@ extern int initclientnetwork(void);
// Mode goes away when the user leaves the channel
#define MODE_TYPE_USERS 4
extern char channel_mode_types[UCHAR_MAX];
extern char channel_mode_types[UCHAR_MAX+1];
#if LOGALL
extern ssize_t SENDCLIENT(struct string msg);