diff --git a/Changes b/Changes index 7d7996b5b..423857cea 100644 --- a/Changes +++ b/Changes @@ -1073,3 +1073,4 @@ seen. gmtime warning still there - Removed some ancient debugging code (num - %s) - Wiped out FLAGS_TS8 because I want to move ->flags into the local section and FLAGS_TS8 had 0 purpose except setting CHFL_SERVOPOK (which did nothing) +- Fixed typo I made in previous fix causing non-compileness diff --git a/src/s_user.c b/src/s_user.c index 9e1521930..26eac412b 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -902,7 +902,7 @@ extern int register_user(cptr, sptr, nick, username, umode, virthost) "USER server wrong direction"); } else - sptr->flags |= (acptr->flags & /* FLAGS_TS8 */); + sptr->flags |= (acptr->flags /* & FLAGS_TS8 */); /* *FINALL* this gets in ircd... -- Barubary */ /* We change this a bit .. */ if (IsULine(sptr->srvptr))