0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 21:28:53 +02:00

Fix overzealotry in flags fixing.

These flags are for oper confs, not for client flags.
This commit is contained in:
Elizabeth Myers 2016-04-07 07:48:50 -05:00
parent 66f7fe673b
commit 5a22e9259b

View file

@ -138,9 +138,8 @@ extern void propagate_generic(struct Client *source_p, const char *command,
extern void cluster_generic(struct Client *, const char *, int cltype,
int cap, const char *format, ...);
/* Other client flags are in client.h */
#define OPER_ENCRYPTED 0x10000000
#define OPER_NEEDSSL 0x20000000
#define OPER_ENCRYPTED 0x00001
#define OPER_NEEDSSL 0x80000
#define OPER_FLAGS 0 /* no oper privs in Client.flags/oper_conf.flags currently */