From 67da64d6e70f62c107b3839aaf09fd1543c5e6ec Mon Sep 17 00:00:00 2001 From: Luigi Rizzo Date: Sun, 17 Aug 2014 03:36:09 -0700 Subject: [PATCH] uid/gid workaround to build on linux 3.13 -- not a proper fix --- kipfw/ipfw2_mod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kipfw/ipfw2_mod.c b/kipfw/ipfw2_mod.c index d0824ce..73c79c8 100644 --- a/kipfw/ipfw2_mod.c +++ b/kipfw/ipfw2_mod.c @@ -743,8 +743,8 @@ linux_lookup(const int proto, const __be32 saddr, const __be16 sport, if ((1<sk_callback_lock); if (sk->sk_socket && sk->sk_socket->file) { - u->uid = sk->sk_socket->file->_CURR_UID; - u->gid = sk->sk_socket->file->_CURR_GID; + //u->uid = sk->sk_socket->file->_CURR_UID; + //u->gid = sk->sk_socket->file->_CURR_GID; } read_unlock_bh(&sk->sk_callback_lock); } else { -- 2.43.0