ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/conf_resv.c
(Generate patch)

Comparing ircd-hybrid/trunk/src/conf_resv.c (file contents):
Revision 8473 by michael, Tue Apr 3 12:54:54 2018 UTC vs.
Revision 8496 by michael, Thu Apr 5 12:46:00 2018 UTC

# Line 177 | Line 177 | resv_exempt_find(const struct Client *cl
177            break;
178          case HM_IPV4:
179            if (client_p->connection->aftype == AF_INET)
180 <            if (match_ipv4(&client_p->connection->ip, &exempt->addr, exempt->bits))
180 >            if (match_ipv4(&client_p->ip, &exempt->addr, exempt->bits))
181                return 1;
182            break;
183          case HM_IPV6:
184            if (client_p->connection->aftype == AF_INET6)
185 <            if (match_ipv6(&client_p->connection->ip, &exempt->addr, exempt->bits))
185 >            if (match_ipv6(&client_p->ip, &exempt->addr, exempt->bits))
186                return 1;
187            break;
188          default:

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)