diff options
author | David Howells <dhowells@redhat.com> | 2013-09-24 10:35:17 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2013-09-24 10:35:17 +0100 |
commit | e57e8669f2ab8350d30f771dd2fdd5377f183db2 (patch) | |
tree | 8344918b6ac5ca26792460aec1d5a60c1ede88e2 /security/keys/key.c | |
parent | ccc3e6d9c9aea07a0b60b2b0bfc5b05a704b66d5 (diff) | |
download | linux-e57e8669f2ab8350d30f771dd2fdd5377f183db2.tar.bz2 |
KEYS: Drop the permissions argument from __keyring_search_one()
Drop the permissions argument from __keyring_search_one() as the only caller
passes 0 here - which causes all checks to be skipped.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'security/keys/key.c')
-rw-r--r-- | security/keys/key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/keys/key.c b/security/keys/key.c index 1e23cc288106..7d716b82a61e 100644 --- a/security/keys/key.c +++ b/security/keys/key.c @@ -847,7 +847,7 @@ key_ref_t key_create_or_update(key_ref_t keyring_ref, * update that instead if possible */ if (index_key.type->update) { - key_ref = __keyring_search_one(keyring_ref, &index_key, 0); + key_ref = __keyring_search_one(keyring_ref, &index_key); if (!IS_ERR(key_ref)) goto found_matching_key; } |