diff options
author | David Howells <dhowells@redhat.com> | 2013-09-24 13:35:14 +0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2013-09-24 13:35:14 +0400 |
commit | 7e55ca6dcd07b45619035df343c9614a3ab35034 (patch) | |
tree | bea3f5ae5c007d114d5acd44a1c9e4fc86b41f2b /security | |
parent | a5b4bd2874d9032b42db8cc4880058576c561b06 (diff) | |
download | linux-7e55ca6dcd07b45619035df343c9614a3ab35034.tar.xz |
KEYS: key_is_dead() should take a const key pointer argument
key_is_dead() should take a const key pointer argument as it doesn't modify
what it points to.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/keys/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/keys/internal.h b/security/keys/internal.h index df971feceaf2..490aef5ba34b 100644 --- a/security/keys/internal.h +++ b/security/keys/internal.h @@ -203,7 +203,7 @@ extern struct key *key_get_instantiation_authkey(key_serial_t target_id); /* * Determine whether a key is dead. */ -static inline bool key_is_dead(struct key *key, time_t limit) +static inline bool key_is_dead(const struct key *key, time_t limit) { return key->flags & ((1 << KEY_FLAG_DEAD) | |