diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2009-06-01 11:56:23 +0200 |
---|---|---|
committer | Jan Engelhardt <jengelh@medozas.de> | 2009-06-01 11:57:13 +0200 |
commit | 42979363f3958b4436c6d2503753c182c58e55ea (patch) | |
tree | b22aa627d566e9f3c4f78166af433c70c622f37e /extensions/libxt_time.c | |
parent | cdcfd887b0dcb3c5cff3c2ae49fc34d0cbac5c44 (diff) |
extensions: use NFPROTO_UNSPEC for .family field
This constant would be the designated one for the .family field; it
also, given recent changes, makes grep for NFPROTO_UNSPEC work to
finally recollect all manpages.
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions/libxt_time.c')
-rw-r--r-- | extensions/libxt_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/libxt_time.c b/extensions/libxt_time.c index 1c812602..098fc9c9 100644 --- a/extensions/libxt_time.c +++ b/extensions/libxt_time.c @@ -467,7 +467,7 @@ static void time_save(const void *ip, const struct xt_entry_match *match) static struct xtables_match time_match = { .name = "time", - .family = AF_UNSPEC, + .family = NFPROTO_UNSPEC, .version = XTABLES_VERSION, .size = XT_ALIGN(sizeof(struct xt_time_info)), .userspacesize = XT_ALIGN(sizeof(struct xt_time_info)), |