summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/print.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/print.c b/lib/print.c
index abdfd34..6988fdf 100644
--- a/lib/print.c
+++ b/lib/print.c
@@ -709,18 +709,20 @@ ipset_print_proto_port(char *buf, unsigned int len,
case IPPROTO_UDPLITE:
break;
case IPPROTO_ICMP:
- return ipset_print_icmp(buf + offset, len, data,
+ size = ipset_print_icmp(buf + offset, len, data,
IPSET_OPT_PORT, env);
+ goto out;
case IPPROTO_ICMPV6:
- return ipset_print_icmpv6(buf + offset, len, data,
+ size = ipset_print_icmpv6(buf + offset, len, data,
IPSET_OPT_PORT, env);
+ goto out;
default:
break;
}
}
size = ipset_print_port(buf + offset, len, data, IPSET_OPT_PORT, env);
+out:
SNPRINTF_FAILURE(size, len, offset);
-
return offset;
}