On Wed, Aug 21, 2019 at 11:25:53AM +0200, Phil Sutter wrote: > diff --git a/iptables/nft.c b/iptables/nft.c > index 28e63aad15878..633c33ddddb15 100644 > --- a/iptables/nft.c > +++ b/iptables/nft.c > +static int set_list_fetch_elem_cb(struct nftnl_set *s, void *data) > +{ > + char buf[MNL_SOCKET_BUFFER_SIZE]; > + struct nft_handle *h = data; > + struct nlmsghdr *nlh; > + > + nlh = nftnl_nlmsg_build_hdr(buf, NFT_MSG_GETSETELEM, h->family, > + NLM_F_DUMP, h->seq); > + nftnl_set_elems_nlmsg_build_payload(nlh, s); > + > + return mnl_talk(h, nlh, set_elem_cb, s); Weird indentation here.