neozeed ircu2.9.32-linux-hacks.diff

This commit is contained in:
2023-12-26 16:42:36 -05:00
parent ab64084f63
commit 51650c0d78
40 changed files with 718 additions and 720 deletions

View File

@@ -312,13 +312,14 @@ Link *find_user_link(lp, ptr)
Reg1 Link *lp;
Reg2 aClient *ptr;
{
if (ptr)
if (ptr) {
while (lp)
{
if (lp->value.cptr == ptr)
return (lp);
lp = lp->next;
}
}
return NULL;
}