Pārlūkot izejas kodu

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>
David Howells 13 gadi atpakaļ
vecāks
revīzija
456a8167e9
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      include/linux/key.h

+ 1 - 1
include/linux/key.h

@@ -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;
 }