summaryrefslogtreecommitdiffstats
path: root/examples/nf-queue.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2010-05-09 20:17:54 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2010-05-09 20:17:54 +0200
commita5f25889216411ad7492047fafe6de03b8408440 (patch)
tree3716ffb20863ecfd4edaf4ff33298c3e88bd1e42 /examples/nf-queue.c
parentcbded627a15baf792465c0cbe960b36cb9408fe2 (diff)
relax mnl_attr_type_valid() checkings and change errno value
This patch relaxes strict attribute checkings in the example files. I have also changed the errno value, now it's EOPNOTSUPP instead of EINVAL. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'examples/nf-queue.c')
-rw-r--r--examples/nf-queue.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/nf-queue.c b/examples/nf-queue.c
index bde9db1..1df004a 100644
--- a/examples/nf-queue.c
+++ b/examples/nf-queue.c
@@ -26,10 +26,10 @@ static int parse_attr_cb(const struct nlattr *attr, void *data)
const struct nlattr **tb = (const struct nlattr **)data;
int type = mnl_attr_get_type(attr);
- if (mnl_attr_type_valid(attr, NFQA_MAX) < 0) {
- perror("mnl_attr_type_valid");
- return MNL_CB_ERROR;
- }
+ /* skip unsupported attribute in user-space */
+ if (mnl_attr_type_valid(attr, NFQA_MAX) < 0)
+ return MNL_CB_OK;
+
switch(type) {
case NFQA_MARK:
case NFQA_IFINDEX_INDEV: