summaryrefslogtreecommitdiffstats
path: root/extensions/libip6t_hbh.c
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2007-09-08 15:59:04 +0000
committer/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2007-09-08 15:59:04 +0000
commitb060d3194e8020de3449ae38e188520820395387 (patch)
tree1e5ba55b8543497a5e53e3166f4c6656a824eb5a /extensions/libip6t_hbh.c
parent7d3cea0c07c003c0555d5da3ca9ebdbdd273acd8 (diff)
Fix sparse warnings: non-ANSI function declarations, 0 used as pointer
Diffstat (limited to 'extensions/libip6t_hbh.c')
-rw-r--r--extensions/libip6t_hbh.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/libip6t_hbh.c b/extensions/libip6t_hbh.c
index 533d510..229c5e7 100644
--- a/extensions/libip6t_hbh.c
+++ b/extensions/libip6t_hbh.c
@@ -31,17 +31,17 @@ UNAME , IPTABLES_VERSION, LNAME, LNAME, IP6T_OPTS_OPTSNR);
#if HOPBYHOP
static const struct option opts[] = {
- { "hbh-len", 1, 0, '1' },
- { "hbh-opts", 1, 0, '2' },
- { "hbh-not-strict", 1, 0, '3' },
- {0}
+ { "hbh-len", 1, NULL, '1' },
+ { "hbh-opts", 1, NULL, '2' },
+ { "hbh-not-strict", 1, NULL, '3' },
+ { }
};
#else
static const struct option opts[] = {
- { "dst-len", 1, 0, '1' },
- { "dst-opts", 1, 0, '2' },
- { "dst-not-strict", 1, 0, '3' },
- {0}
+ { "dst-len", 1, NULL, '1' },
+ { "dst-opts", 1, NULL, '2' },
+ { "dst-not-strict", 1, NULL, '3' },
+ { }
};
#endif