diff options
author | Patrick McHardy <kaber@trash.net> | 2007-09-08 15:59:04 +0000 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2007-09-08 15:59:04 +0000 |
commit | 500f483fff529dcd88ec96b9d5054be6cd6363a0 (patch) | |
tree | 1e5ba55b8543497a5e53e3166f4c6656a824eb5a /extensions/libipt_MASQUERADE.c | |
parent | 4a058c1729f22ac6224d7175dc5b310842c0e392 (diff) |
Fix sparse warnings: non-ANSI function declarations, 0 used as pointer
Diffstat (limited to 'extensions/libipt_MASQUERADE.c')
-rw-r--r-- | extensions/libipt_MASQUERADE.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/libipt_MASQUERADE.c b/extensions/libipt_MASQUERADE.c index 36f2f241..131c1dcd 100644 --- a/extensions/libipt_MASQUERADE.c +++ b/extensions/libipt_MASQUERADE.c @@ -24,9 +24,9 @@ IPTABLES_VERSION); } static const struct option opts[] = { - { "to-ports", 1, 0, '1' }, - { "random", 0, 0, '2' }, - { 0 } + { "to-ports", 1, NULL, '1' }, + { "random", 0, NULL, '2' }, + { } }; /* Initialize the target. */ |