diff options
Diffstat (limited to 'examples/netfilter')
-rw-r--r-- | examples/netfilter/nfct-daemon.c | 6 |
1 files 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 */ |