summaryrefslogtreecommitdiffstats
path: root/utils/expect_events.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2008-12-10 22:50:23 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2008-12-10 22:50:23 +0100
commitf44b2b59ec22903d98395a0543502551f9685e4d (patch)
tree7f16b4e093d9cb55151bc189054613eaeaffc4f4 /utils/expect_events.c
parent367324c4af8167a9384f23fb419b31b9cf960ac0 (diff)
utils: fix wrong use of errno in example files
This patch removes the use of strerr(errno) when the returned valued is != -1. This fixes random segfaults in my x86_64 machines. According to the documentation, errno should not be used unless the returned value is -1. This patch also includes some missing nfct_close() calls in the examples. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'utils/expect_events.c')
-rw-r--r--utils/expect_events.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/utils/expect_events.c b/utils/expect_events.c
index 956ca42..a8b84cc 100644
--- a/utils/expect_events.c
+++ b/utils/expect_events.c
@@ -37,12 +37,13 @@ int main()
ret = nfexp_catch(h);
- printf("TEST: OK (%d)(%s)\n", ret, strerror(errno));
+ printf("TEST: expectation events ");
+ if (ret == -1)
+ printf("(%d)(%s)\n", ret, strerror(errno));
+ else
+ printf("(OK)\n");
nfct_close(h);
- if (ret == -1)
- exit(EXIT_FAILURE);
-
- exit(EXIT_SUCCESS);
+ ret == -1 ? exit(EXIT_FAILURE) : exit(EXIT_SUCCESS);
}