summaryrefslogtreecommitdiffstats
path: root/lib/object.c
diff options
context:
space:
mode:
authorThomas Graf <tgr@lsx.localdomain>2008-04-29 21:31:30 (GMT)
committerThomas Graf <tgr@lsx.localdomain>2008-04-29 21:31:30 (GMT)
commit535e83162249ed6274ba46bc72d8cc683ba20e17 (patch)
treefa3b60b4116668b86d23c11b695ff371d771b997 /lib/object.c
parent8ac78f1552fa6b6340776513c8a7c36f7b72e498 (diff)
downloadlibnl-535e83162249ed6274ba46bc72d8cc683ba20e17.zip
libnl-535e83162249ed6274ba46bc72d8cc683ba20e17.tar.gz
libnl-535e83162249ed6274ba46bc72d8cc683ba20e17.tar.bz2
Big routing code rework (API/ABI BREAK!)
Adds all missing routing attributes and brings the routing related code to a working state. In the process the API was broken several times with the justification that nobody is using this code yet. The changes include new example code which is also a prototype for how plain CLI tools could look like to control routes.
Diffstat (limited to 'lib/object.c')
-rw-r--r--lib/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/object.c b/lib/object.c
index 74f6e2d..72e4ba4 100644
--- a/lib/object.c
+++ b/lib/object.c
@@ -318,7 +318,7 @@ int nl_object_match_filter(struct nl_object *obj, struct nl_object *filter)
return 0;
return !(ops->oo_compare(obj, filter, filter->ce_mask,
- LOOSE_FLAG_COMPARISON));
+ LOOSE_COMPARISON));
}
/**