From 9de986bfff0f6d7497bd9998de83906e5d5da168 Mon Sep 17 00:00:00 2001 From: "/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=kadlec/emailAddress=kadlec@netfilter.org" Date: Mon, 3 Jan 2005 08:55:10 +0000 Subject: Bug in macipmap (saving) fixed --- ChangeLog | 4 ++++ ipset_macipmap.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4ed34ff..39a3147 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2.0.1 + - Cut'n'paste bug at saving macipmap types fixed + Thanks to Vincent Bernat for the bugreport. + 2.0 - Chaining of sets are changed: child sets replaced by bindings - Kernel-userspace communication reorganized to minimize the number diff --git a/ipset_macipmap.c b/ipset_macipmap.c index 5d12af4..d3b59b0 100644 --- a/ipset_macipmap.c +++ b/ipset_macipmap.c @@ -259,10 +259,10 @@ void saveheader(struct set *set, unsigned options) struct ip_set_macipmap *mysetdata = (struct ip_set_macipmap *) set->settype->header; - printf("-N %s %s --from: %s", + printf("-N %s %s --from %s", set->name, set->settype->typename, ip_tostring(mysetdata->first_ip, options)); - printf(" --to: %s", ip_tostring(mysetdata->last_ip, options)); + printf(" --to %s", ip_tostring(mysetdata->last_ip, options)); if (mysetdata->flags & IPSET_MACIP_MATCHUNSET) printf(" --matchunset"); -- cgit v1.2.3