instead of raw setsockopt() Signed-off-by: Ken-ichirou MATSUZAWA <chamas@xxxxxxxxxxxxx> --- examples/netfilter/nfct-daemon.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/netfilter/nfct-daemon.c b/examples/netfilter/nfct-daemon.c index a9b93db..a4ef0af 100644 --- a/examples/netfilter/nfct-daemon.c +++ b/examples/netfilter/nfct-daemon.c @@ -293,10 +293,8 @@ int main(int argc, char *argv[]) * b) if the user-space process does not pull messages from the * receiver buffer so often. */ - setsockopt(mnl_socket_get_fd(nl), SOL_NETLINK, - NETLINK_BROADCAST_ERROR, &on, sizeof(int)); - setsockopt(mnl_socket_get_fd(nl), SOL_NETLINK, NETLINK_NO_ENOBUFS, - &on, sizeof(int)); + mnl_socket_setsockopt(nl, NETLINK_BROADCAST_ERROR, &on, sizeof(int)); + mnl_socket_setsockopt(nl, NETLINK_NO_ENOBUFS, &on, sizeof(int)); nlh = mnl_nlmsg_put_header(buf); /* Counters are atomically zeroed in each dump */ -- 1.8.4.rc3 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html