diff options
author | Mimi Zohar <zohar@linux.ibm.com> | 2018-12-18 07:57:41 -0500 |
---|---|---|
committer | Mimi Zohar <zohar@linux.ibm.com> | 2019-02-04 17:36:01 -0500 |
commit | 107dfa2e56ecdfda654d939cd464893a72086297 (patch) | |
tree | 9450e9e5f5411a1376aa871d26074182869c015d /security | |
parent | 278311e417be60f7caef6fcb12bda4da2711ceff (diff) | |
download | linux-stable-107dfa2e56ecdfda654d939cd464893a72086297.tar.gz linux-stable-107dfa2e56ecdfda654d939cd464893a72086297.tar.bz2 linux-stable-107dfa2e56ecdfda654d939cd464893a72086297.zip |
encrypted-keys: fix Opt_err/Opt_error = -1
Properly start the enumeration associated with match_table_t at zero,
making Opt_err/Opt_error the last enumeration value.
Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/keys/encrypted-keys/encrypted.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/keys/encrypted-keys/encrypted.c b/security/keys/encrypted-keys/encrypted.c index 389a298274d3..347108f660a1 100644 --- a/security/keys/encrypted-keys/encrypted.c +++ b/security/keys/encrypted-keys/encrypted.c @@ -60,11 +60,11 @@ static int blksize; static struct crypto_shash *hash_tfm; enum { - Opt_err = -1, Opt_new, Opt_load, Opt_update + Opt_new, Opt_load, Opt_update, Opt_err }; enum { - Opt_error = -1, Opt_default, Opt_ecryptfs, Opt_enc32 + Opt_default, Opt_ecryptfs, Opt_enc32, Opt_error }; static const match_table_t key_format_tokens = { |