From: Laurent Defert Date: Thu, 20 Jan 2011 10:51:36 +0000 (+0100) Subject: Fix function nfnl_ct_del name X-Git-Tag: libnl3_0~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f3dbf80d1ee8f0950aa2ee6e5fbd06f307a5bee;p=thirdparty%2Flibnl.git Fix function nfnl_ct_del name This function is named nfnl_nl_del in lib/netfilter/ct.c, while it was declared nfnl_ct_delete in the header. --- diff --git a/include/netlink/netfilter/ct.h b/include/netlink/netfilter/ct.h index c4402b3..57fbe53 100644 --- a/include/netlink/netfilter/ct.h +++ b/include/netlink/netfilter/ct.h @@ -44,7 +44,7 @@ extern int nfnl_ct_add(struct nl_sock *, const struct nfnl_ct *, int); extern int nfnl_ct_build_delete_request(const struct nfnl_ct *, int, struct nl_msg **); -extern int nfnl_ct_delete(struct nl_sock *, const struct nfnl_ct *, int); +extern int nfnl_ct_del(struct nl_sock *, const struct nfnl_ct *, int); extern int nfnl_ct_build_query_request(const struct nfnl_ct *, int, struct nl_msg **);