From 5a22e9259bff15cea1f05a328693796c7c857256 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Thu, 7 Apr 2016 07:48:50 -0500 Subject: [PATCH] Fix overzealotry in flags fixing. These flags are for oper confs, not for client flags. --- include/s_newconf.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/s_newconf.h b/include/s_newconf.h index a1858b7f8..22c24784e 100644 --- a/include/s_newconf.h +++ b/include/s_newconf.h @@ -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 */