diff options
Diffstat (limited to 'src/spfdnsip.c')
-rw-r--r-- | src/spfdnsip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spfdnsip.c b/src/spfdnsip.c index f2a802e..4e05b31 100644 --- a/src/spfdnsip.c +++ b/src/spfdnsip.c @@ -207,10 +207,10 @@ int spf_mx(char *spfspec, char *prefix) r = SPF_NONE; for (j = 0; j < ia.len; ++j) { if (byte_diff(ip6remote, 16, V6localnet) && !ip6_isv4mapped(ip6remote)) { - if (match_ip6(&ia.ix[j].addr.ip6.d, ipprefix, ip6remote)) return SPF_OK; + if (match_ip6(ia.ix[j].addr.ip6.d, ipprefix, ip6remote)) return SPF_OK; } if (byte_diff(ip4remote, 4, V4localnet)) { - if (match_ip4(&ia.ix[j].addr.ip4.d, ipprefix, ip4remote)) return SPF_OK; + if (match_ip4(ia.ix[j].addr.ip4.d, ipprefix, ip4remote)) return SPF_OK; } } } |