From: Pablo Neira Ayuso Date: Mon, 17 Jun 2013 15:54:56 +0000 (+0200) Subject: rule: family field in struct handle is unsigned X-Git-Tag: v0.099~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0b9ceac8f5c3f13db609a5d992a8375fc8ec6ab;p=thirdparty%2Fnftables.git rule: family field in struct handle is unsigned Signed-off-by: Pablo Neira Ayuso --- diff --git a/include/rule.h b/include/rule.h index eda6b2c2..e0debe3b 100644 --- a/include/rule.h +++ b/include/rule.h @@ -15,7 +15,7 @@ * @handle: rule handle (rules only) */ struct handle { - int family; + uint32_t family; const char *table; const char *chain; const char *set;