diff options
author | vague666 <jari.matilainen@gmail.com> | 2018-06-06 10:00:38 +0200 |
---|---|---|
committer | vague666 <jari.matilainen@gmail.com> | 2018-06-06 10:00:38 +0200 |
commit | ac3af3fb56d98b884d03646e3c15435c8a435bf3 (patch) | |
tree | 66dfd9728bb635cf3fbd67561f874fe6dfee5801 /src | |
parent | db3b671328d0e6890b17c23baf9d4280d086e89b (diff) | |
download | irssi-ac3af3fb56d98b884d03646e3c15435c8a435bf3.zip |
these were bitflags
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ignore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ignore.h b/src/core/ignore.h index 439927ed..958aa801 100644 --- a/src/core/ignore.h +++ b/src/core/ignore.h @@ -29,7 +29,7 @@ int ignore_check(SERVER_REC *server, const char *nick, const char *host, enum { IGNORE_FIND_PATTERN = 0x01, /* Match the pattern */ IGNORE_FIND_NOACT = 0x02, /* Exclude the targets with NOACT level */ - IGNORE_FIND_HIDDEN = 0x03, /* Exclude the targets with HIDDEN level */ + IGNORE_FIND_HIDDEN = 0x04, /* Exclude the targets with HIDDEN level */ }; IGNORE_REC *ignore_find_full (const char *servertag, const char *mask, const char *pattern, |