From 38c144870b482584f7b6a6bc493f36bd4f52faf5 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Thu, 17 Oct 2019 17:15:23 +0200 Subject: [PATCH] fix indentation --- src/misc/bcrypt/bcrypt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/misc/bcrypt/bcrypt.c b/src/misc/bcrypt/bcrypt.c index 3a80d7ebd..f032eb6a4 100644 --- a/src/misc/bcrypt/bcrypt.c +++ b/src/misc/bcrypt/bcrypt.c @@ -164,9 +164,9 @@ int bcrypt_pbkdf_openbsd(const void *secret, unsigned long secret_len, if ((err = _bcrypt_pbkdf_hash(hashed_pass, hashed_pass_len, buf[0], x, buf[1], &y)) != CRYPT_OK) { goto LBL_ERR; } - for (x = 0; x < y; x++) { - buf[2][x] ^= buf[1][x]; - } + for (x = 0; x < y; x++) { + buf[2][x] ^= buf[1][x]; + } } /* now emit upto `steps` bytes of buf[2] to output */