From: Thomas Graf Date: Fri, 13 Dec 2013 14:57:43 +0000 (+0100) Subject: cache: Add missing declaration for nl_cache_find() X-Git-Tag: libnl3_2_24rc1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc717a9bfcac70eead2d04e6978d136166294d34;p=thirdparty%2Flibnl.git cache: Add missing declaration for nl_cache_find() Reported-by: Andrej.Gantvorg@wago.com Signed-off-by: Thomas Graf --- diff --git a/include/netlink/cache.h b/include/netlink/cache.h index 415bb00..08f97fa 100644 --- a/include/netlink/cache.h +++ b/include/netlink/cache.h @@ -92,6 +92,8 @@ extern void nl_cache_set_flags(struct nl_cache *, unsigned int); extern int nl_cache_is_empty(struct nl_cache *); extern struct nl_object * nl_cache_search(struct nl_cache *, struct nl_object *); +extern struct nl_object *nl_cache_find(struct nl_cache *, + struct nl_object *); extern struct nl_object * nl_cache_lookup(struct nl_cache *, struct nl_object *); extern void nl_cache_mark_all(struct nl_cache *);