diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-11-17 13:38:40 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-11-17 13:38:40 +0000 |
commit | 6d51bd6af224f37b1108f66bf3e9c0d9ecb48b8d (patch) | |
tree | 1382af40653ca46ae65857015b1c25d9e282419f /src/numeric.c | |
parent | e1de6476037cd7303e979282cca4de6ad3db5ebc (diff) |
- src/numeric.c: added missing +h mode to 004 numeric when building the ircd with --enable-halfops
as reported by Adam <adam@anope.org>
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2556 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/numeric.c')
-rw-r--r-- | src/numeric.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/numeric.c b/src/numeric.c index af850c0..4b09622 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -31,7 +31,11 @@ static const char *const replies[] = { /* 001 RPL_WELCOME */ ":%s 001 %s :Welcome to the %s Internet Relay Chat Network %s", /* 002 RPL_YOURHOST */ ":%s 002 %s :Your host is %s, running version %s", /* 003 RPL_CREATED */ ":%s 003 %s :This server was created %s", +#ifdef HALFOPS +/* 004 RPL_MYINFO */ ":%s 004 %s %s %s %s bciklmnoprstveIMORS bkloveIh", +#else /* 004 RPL_MYINFO */ ":%s 004 %s %s %s %s bciklmnoprstveIMORS bkloveI", +#endif /* 005 RPL_ISUPPORT */ ":%s 005 %s %s :are supported by this server", /* 006 */ NULL, /* 007 */ NULL, |