Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6452a5fde03717c55dbb8b6b0b5bfab510ad38d5
Commit:     6452a5fde03717c55dbb8b6b0b5bfab510ad38d5
Parent:     dab6ba36888a12f3e3edff71eeef968fc159178a
Author:     Patrick McHardy <[EMAIL PROTECTED]>
AuthorDate: Thu Nov 15 14:29:21 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Thu Nov 15 14:29:21 2007 -0800

    [NETFILTER]: fix compat_nf_sockopt typo
    
    It should pass opt to the ->get/->set functions, not ops.
    
    Tested-by: Luca Tettamanti <[EMAIL PROTECTED]>
    Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/netfilter/nf_sockopt.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/netfilter/nf_sockopt.c b/net/netfilter/nf_sockopt.c
index 87bc144..3dd4b3c 100644
--- a/net/netfilter/nf_sockopt.c
+++ b/net/netfilter/nf_sockopt.c
@@ -143,12 +143,12 @@ static int compat_nf_sockopt(struct sock *sk, int pf, int 
val,
                if (ops->compat_get)
                        ret = ops->compat_get(sk, val, opt, len);
                else
-                       ret = ops->get(sk, val, ops, len);
+                       ret = ops->get(sk, val, opt, len);
        } else {
                if (ops->compat_set)
-                       ret = ops->compat_set(sk, val, ops, *len);
+                       ret = ops->compat_set(sk, val, opt, *len);
                else
-                       ret = ops->set(sk, val, ops, *len);
+                       ret = ops->set(sk, val, opt, *len);
        }
 
        module_put(ops->owner);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to