From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Gary Lin Date: Thu, 27 Aug 2020 16:10:50 +0800 Subject: [PATCH] mokutil: adjust the command bits Adjust the bits after removing SIMPLE_HASH. Signed-off-by: Gary Lin (cherry picked from commit 25191c38156b90004b783d0265d967dbe8e76a38) --- src/mokutil.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/mokutil.c b/src/mokutil.c index e811266..a9d97f4 100644 --- a/src/mokutil.c +++ b/src/mokutil.c @@ -76,13 +76,13 @@ #define TEST_KEY (1 << 14) #define RESET (1 << 15) #define GENERATE_PW_HASH (1 << 16) -#define IGNORE_DB (1 << 18) -#define USE_DB (1 << 19) -#define MOKX (1 << 20) -#define IMPORT_HASH (1 << 21) -#define DELETE_HASH (1 << 22) -#define VERBOSITY (1 << 23) -#define TIMEOUT (1 << 24) +#define IGNORE_DB (1 << 17) +#define USE_DB (1 << 18) +#define MOKX (1 << 19) +#define IMPORT_HASH (1 << 20) +#define DELETE_HASH (1 << 21) +#define VERBOSITY (1 << 22) +#define TIMEOUT (1 << 23) #define DEFAULT_CRYPT_METHOD SHA512_BASED #define DEFAULT_SALT_SIZE SHA512_SALT_MAX