diff options
author | David Howells <dhowells@redhat.com> | 2014-09-16 18:36:04 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2014-09-16 18:36:04 +0200 |
commit | 614d8c39014c185aa0f7254f0a470cc33fc1b284 (patch) | |
tree | e6408d142b72dda0420b0f96a58a05d1e4a309b8 /security/keys/big_key.c | |
parent | KEYS: Preparse match data (diff) | |
download | linux-614d8c39014c185aa0f7254f0a470cc33fc1b284.tar.xz linux-614d8c39014c185aa0f7254f0a470cc33fc1b284.zip |
KEYS: Remove key_type::def_lookup_type
Remove key_type::def_lookup_type as it's no longer used. The information now
defaults to KEYRING_SEARCH_LOOKUP_DIRECT but may be overridden by
type->match_preparse().
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
Diffstat (limited to 'security/keys/big_key.c')
-rw-r--r-- | security/keys/big_key.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/security/keys/big_key.c b/security/keys/big_key.c index c2f91a0cf889..4045c13a761a 100644 --- a/security/keys/big_key.c +++ b/security/keys/big_key.c @@ -33,7 +33,6 @@ MODULE_LICENSE("GPL"); */ struct key_type key_type_big_key = { .name = "big_key", - .def_lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT, .preparse = big_key_preparse, .free_preparse = big_key_free_preparse, .instantiate = generic_key_instantiate, |