Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73872
b: refs/heads/master
c: 6452a5f
h: refs/heads/master
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Nov 15, 2007
1 parent fb6fa4a commit 260b3b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dab6ba36888a12f3e3edff71eeef968fc159178a
refs/heads/master: 6452a5fde03717c55dbb8b6b0b5bfab510ad38d5
6 changes: 3 additions & 3 deletions trunk/net/netfilter/nf_sockopt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 260b3b9

Please sign in to comment.