Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120743
b: refs/heads/master
c: 3496f92
h: refs/heads/master
i:
  120741: 8d9deeb
  120739: 17b3317
  120735: 7058b98
v: v3
  • Loading branch information
James Morris committed Nov 26, 2008
1 parent 53c53dc commit 3f5e5cc
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: 6ded6ab9be4f6164aef1c527407c1b94f0929799
refs/heads/master: 3496f92beb9aa99ef21fccc154a36c7698e9c538
6 changes: 3 additions & 3 deletions trunk/security/security.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,12 +225,12 @@ int security_bprm_check(struct linux_binprm *bprm)

void security_bprm_committing_creds(struct linux_binprm *bprm)
{
return security_ops->bprm_committing_creds(bprm);
security_ops->bprm_committing_creds(bprm);
}

void security_bprm_committed_creds(struct linux_binprm *bprm)
{
return security_ops->bprm_committed_creds(bprm);
security_ops->bprm_committed_creds(bprm);
}

int security_bprm_secureexec(struct linux_binprm *bprm)
Expand Down Expand Up @@ -613,7 +613,7 @@ int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp)

void security_commit_creds(struct cred *new, const struct cred *old)
{
return security_ops->cred_commit(new, old);
security_ops->cred_commit(new, old);
}

int security_kernel_act_as(struct cred *new, u32 secid)
Expand Down

0 comments on commit 3f5e5cc

Please sign in to comment.