Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 99216
b: refs/heads/master
c: 65fc766
h: refs/heads/master
v: v3
  • Loading branch information
James Morris committed Jul 14, 2008
1 parent eb5236c commit 83cb2eb
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: 2baf06df85b27c1d64867883a0692519594f1ef2
refs/heads/master: 65fc7668006b537f7ae8451990c0ed9ec882544e
6 changes: 3 additions & 3 deletions trunk/security/security.c
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ EXPORT_SYMBOL(security_secctx_to_secid);

void security_release_secctx(char *secdata, u32 seclen)
{
return security_ops->release_secctx(secdata, seclen);
security_ops->release_secctx(secdata, seclen);
}
EXPORT_SYMBOL(security_release_secctx);

Expand Down Expand Up @@ -1012,12 +1012,12 @@ int security_sk_alloc(struct sock *sk, int family, gfp_t priority)

void security_sk_free(struct sock *sk)
{
return security_ops->sk_free_security(sk);
security_ops->sk_free_security(sk);
}

void security_sk_clone(const struct sock *sk, struct sock *newsk)
{
return security_ops->sk_clone_security(sk, newsk);
security_ops->sk_clone_security(sk, newsk);
}

void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
Expand Down

0 comments on commit 83cb2eb

Please sign in to comment.