From 65cb5c100eb1e5891f145be0b89aaa3c2d2e4317 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Fri, 18 Feb 2011 18:58:21 +0100 Subject: netlink: fix wrong use of netlink flags for dump operations The avahi-daemon uses a wrong flag combination to operate with rtnetlink. This patch fixes the problems. No need to set NLM_F_ACK since the dump operation already includes the trailing NLMSG_DONE message that informs about the end of the dump operation. --- avahi-autoipd/iface-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'avahi-autoipd/iface-linux.c') diff --git a/avahi-autoipd/iface-linux.c b/avahi-autoipd/iface-linux.c index fc27829..83e9e41 100644 --- a/avahi-autoipd/iface-linux.c +++ b/avahi-autoipd/iface-linux.c @@ -262,7 +262,7 @@ int iface_get_initial_state(State *state) { n->nlmsg_len = NLMSG_LENGTH(sizeof(*ifi)); n->nlmsg_type = RTM_GETLINK; n->nlmsg_seq = seq; - n->nlmsg_flags = NLM_F_MATCH|NLM_F_REQUEST|NLM_F_ACK; + n->nlmsg_flags = NLM_F_REQUEST|NLM_F_DUMP; n->nlmsg_pid = 0; ifi = NLMSG_DATA(n); -- cgit