[NETFILTER]: nfnetlink_log: fix typo It should use htonl for the GID, not htons. Signed-off-by: Patrick McHardy <kaber@xxxxxxxxx> --- commit b64a07de84c00708be436ec05a75c093430e262d tree 0bfbb96d69717d2146e0f9683d8b0a22a3216910 parent 55a3ad929c35527e0ac6ccdb5535779ed1523be5 author Patrick McHardy <kaber@xxxxxxxxx> Tue, 29 Jan 2008 16:21:52 +0100 committer Patrick McHardy <kaber@xxxxxxxxx> Wed, 30 Jan 2008 15:04:13 +0100 net/netfilter/nfnetlink_log.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c index 5013cb9..2348fcb 100644 --- a/net/netfilter/nfnetlink_log.c +++ b/net/netfilter/nfnetlink_log.c @@ -467,7 +467,7 @@ __build_packet_message(struct nfulnl_instance *inst, read_lock_bh(&skb->sk->sk_callback_lock); if (skb->sk->sk_socket && skb->sk->sk_socket->file) { __be32 uid = htonl(skb->sk->sk_socket->file->f_uid); - __be32 gid = htons(skb->sk->sk_socket->file->f_gid); + __be32 gid = htonl(skb->sk->sk_socket->file->f_gid); /* need to unlock here since NLA_PUT may goto */ read_unlock_bh(&skb->sk->sk_callback_lock); NLA_PUT_BE32(inst->skb, NFULA_UID, uid); - 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