]> granicus.if.org Git - libnl/commitdiff
More clean NL_AUTO_PORT and NL_AUTO_SEQ usage in nl_complete_msg
authorКоренберг Марк <mark@ideco.ru>
Thu, 30 Aug 2012 12:40:11 +0000 (18:40 +0600)
committerКоренберг Марк <mark@ideco.ru>
Thu, 30 Aug 2012 12:40:25 +0000 (18:40 +0600)
lib/nl.c

index d3e67aa6242802d5a375aabf5e7f699c3640eb07..ea3e0871550164ebd4987b9888e2cbb7721f5e0e 100644 (file)
--- a/lib/nl.c
+++ b/lib/nl.c
@@ -274,10 +274,10 @@ void nl_complete_msg(struct nl_sock *sk, struct nl_msg *msg)
        struct nlmsghdr *nlh;
 
        nlh = nlmsg_hdr(msg);
-       if (nlh->nlmsg_pid == 0)
+       if (nlh->nlmsg_pid == NL_AUTO_PORT)
                nlh->nlmsg_pid = sk->s_local.nl_pid;
 
-       if (nlh->nlmsg_seq == 0)
+       if (nlh->nlmsg_seq == NL_AUTO_SEQ)
                nlh->nlmsg_seq = sk->s_seq_next++;
 
        if (msg->nm_protocol == -1)