summaryrefslogtreecommitdiffstats
path: root/iptables.c
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-06-26 15:29:45 +0000
committerPatrick McHardy <kaber@trash.net>2007-06-26 15:29:45 +0000
commit76258727e101a0960cc8fcf84d9a451e4b5fd9b5 (patch)
tree367629a7babbf74cca351e2473118638c0562bb2 /iptables.c
parent06e88ddd97aaacf50a8ca2418e9c6c5d95b99865 (diff)
Fix "iptables getsockopt failed strangely" when querying revisions for non-existant matches and targets
Reported by Joseph Jezak <josejx@gentoo.org>.
Diffstat (limited to 'iptables.c')
-rw-r--r--iptables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables.c b/iptables.c
index 893b02db..83b0c820 100644
--- a/iptables.c
+++ b/iptables.c
@@ -1158,7 +1158,7 @@ static int compatible_revision(const char *name, u_int8_t revision, int opt)
max_rev = getsockopt(sockfd, IPPROTO_IP, opt, &rev, &s);
if (max_rev < 0) {
/* Definitely don't support this? */
- if (errno == EPROTONOSUPPORT) {
+ if (errno == ENOENT || errno == EPROTONOSUPPORT) {
close(sockfd);
return 0;
} else if (errno == ENOPROTOOPT) {