mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-08 08:43:13 +02:00
bleh
This commit is contained in:
+2
-5
@@ -2551,11 +2551,8 @@ static void sub1_from_channel(chptr)
|
||||
Ban *ban;
|
||||
Link *lp;
|
||||
|
||||
/* Bad. Bad. Bad. chptr->users is unsigned
|
||||
* someone doesn't remember what -- does when
|
||||
* preceding a variable.
|
||||
if (--chptr->users <= 0) */
|
||||
if (chptr->users-- == 0)
|
||||
/* if (--chptr->users <= 0) */
|
||||
if (chptr->users == 0 || --chptr->users == 0)
|
||||
{
|
||||
/*
|
||||
* Now, find all invite links from channel structure
|
||||
|
||||
Reference in New Issue
Block a user