# | 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: |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |