fix comparison instead of assignment

This commit is contained in:
Jeff Lawson 2014-08-26 10:41:05 -05:00
parent 05e80ee305
commit 0754bb7865
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ void modesFreeClient(struct client *c) {
if (Modes.stat_raw_connections) Modes.stat_raw_connections--;
} else if (c->service == Modes.bos) {
if (Modes.stat_beast_connections) Modes.stat_beast_connections--;
} else if (c->service = Modes.fatsvos) {
} else if (c->service == Modes.fatsvos) {
if (Modes.stat_fatsv_connections) Modes.stat_fatsv_connections--;
}