summaryrefslogtreecommitdiffstats
path: root/utils/expect_delete.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_delete.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_delete.c')
-rw-r--r--utils/expect_delete.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/utils/expect_delete.c b/utils/expect_delete.c
index e6255da..a402757 100644
--- a/utils/expect_delete.c
+++ b/utils/expect_delete.c
@@ -41,10 +41,11 @@ int main()
ret = nfexp_query(h, NFCT_Q_DESTROY, exp);
- printf("TEST: delete expectation (%d)(%s)\n", ret, strerror(errno));
-
+ printf("TEST: delete expectation ");
if (ret == -1)
- exit(EXIT_FAILURE);
+ printf("(%d)(%s)\n", ret, strerror(errno));
+ else
+ printf("(OK)\n");
- exit(EXIT_SUCCESS);
+ ret == -1 ? exit(EXIT_FAILURE) : exit(EXIT_SUCCESS);
}