diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-03-19 21:01:50 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-03-19 21:01:50 +0000 |
commit | fda194fe19a3e91b12387aeb9eda544580e48381 (patch) | |
tree | 7f0651fc729cdca3dd1bfcfd0c7e347a8d8e06d1 /irc.h | |
parent | d18dee42088f0bef9d09dbc7903590d755d19a50 (diff) |
Allow identify -noload/-force without typing a password. (/OPER)
Patch from trac3r, bug #814.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -56,9 +56,11 @@ typedef enum to logfiles) is the /OPER command, try to use that command for stuff that matters. */ OPER_HACK_IDENTIFY = 0x100, + OPER_HACK_IDENTIFY_NOLOAD = 0x01100, + OPER_HACK_IDENTIFY_FORCE = 0x02100, OPER_HACK_REGISTER = 0x200, OPER_HACK_ACCOUNT_ADD = 0x400, - OPER_HACK_ANY = 0x700, /* To check for them all at once. */ + OPER_HACK_ANY = 0x3700, /* To check for them all at once. */ } irc_status_t; struct irc_user; |