forked from Minki/linux
KEYS: Permit key_serial() to be called with a const key pointer
Permit key_serial() to be called with a const key pointer. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: James Morris <jmorris@namei.org>
This commit is contained in:
parent
f6b24579d0
commit
456a8167e9
@ -271,7 +271,7 @@ extern int keyring_add_key(struct key *keyring,
|
||||
|
||||
extern struct key *key_lookup(key_serial_t id);
|
||||
|
||||
static inline key_serial_t key_serial(struct key *key)
|
||||
static inline key_serial_t key_serial(const struct key *key)
|
||||
{
|
||||
return key ? key->serial : 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user