summaryrefslogtreecommitdiffstats
path: root/ip6tables.c
diff options
context:
space:
mode:
authorMarc Boucher <marc@mbsi.ca>2002-03-24 15:09:31 +0000
committerMarc Boucher <marc@mbsi.ca>2002-03-24 15:09:31 +0000
commit067477b4cabfea38d8dd6394194b75083e504615 (patch)
tree8ee07038eb98253b1ab70f0b583827845a14add0 /ip6tables.c
parent07b69b60e98f7be23b7038b64b6d170be3ab7791 (diff)
make find_target() and find_match() honor LOAD_MUST_SUCCEED when NO_SHARED_LIBS
is defined.
Diffstat (limited to 'ip6tables.c')
-rw-r--r--ip6tables.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ip6tables.c b/ip6tables.c
index b4d6ea55..dad9052d 100644
--- a/ip6tables.c
+++ b/ip6tables.c
@@ -740,6 +740,10 @@ find_match(const char *name, enum ip6t_tryload tryload)
else
ptr = NULL;
}
+ if(!ptr && (tryload == LOAD_MUST_SUCCEED)) {
+ exit_error(PARAMETER_PROBLEM,
+ "Couldn't find match `%s'\n", name);
+ }
#endif
if (ptr)
@@ -952,6 +956,10 @@ find_target(const char *name, enum ip6t_tryload tryload)
else
ptr = NULL;
}
+ if(!ptr && (tryload == LOAD_MUST_SUCCEED)) {
+ exit_error(PARAMETER_PROBLEM,
+ "Couldn't find target `%s'\n", name);
+ }
#endif
if (ptr)