Skip to content

Commit 49bb37d

Browse files
authored
Merge pull request #512 from fperrad/20191017_indent
fix indentation
2 parents 9682df9 + 38c1448 commit 49bb37d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/misc/bcrypt/bcrypt.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ int bcrypt_pbkdf_openbsd(const void *secret, unsigned long secret_len,
164164
if ((err = _bcrypt_pbkdf_hash(hashed_pass, hashed_pass_len, buf[0], x, buf[1], &y)) != CRYPT_OK) {
165165
goto LBL_ERR;
166166
}
167-
for (x = 0; x < y; x++) {
168-
buf[2][x] ^= buf[1][x];
169-
}
167+
for (x = 0; x < y; x++) {
168+
buf[2][x] ^= buf[1][x];
169+
}
170170
}
171171

172172
/* now emit upto `steps` bytes of buf[2] to output */

0 commit comments

Comments
 (0)