summaryrefslogtreecommitdiffstats
path: root/ipset_iphash.c
diff options
context:
space:
mode:
Diffstat (limited to 'ipset_iphash.c')
-rw-r--r--ipset_iphash.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/ipset_iphash.c b/ipset_iphash.c
index b352df4..0bc5bd1 100644
--- a/ipset_iphash.c
+++ b/ipset_iphash.c
@@ -200,8 +200,7 @@ iphash_printips(struct set *set UNUSED, void *data, u_int32_t len,
while (offset < len) {
ip = data + offset;
- if (*ip)
- printf("%s\n", ip_tostring(*ip, options));
+ printf("%s\n", ip_tostring(*ip, options));
offset += IPSET_VALIGN(sizeof(ip_set_ip_t), dont_align);
}
}
@@ -230,9 +229,7 @@ iphash_saveips(struct set *set UNUSED, void *data, u_int32_t len,
while (offset < len) {
ip = data + offset;
- if (*ip)
- printf("-A %s %s\n", set->name,
- ip_tostring(*ip, options));
+ printf("-A %s %s\n", set->name, ip_tostring(*ip, options));
offset += IPSET_VALIGN(sizeof(ip_set_ip_t), dont_align);
}
}