summaryrefslogtreecommitdiff
path: root/libs/libssh2/src/bcrypt_pbkdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libssh2/src/bcrypt_pbkdf.c')
-rw-r--r--libs/libssh2/src/bcrypt_pbkdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libssh2/src/bcrypt_pbkdf.c b/libs/libssh2/src/bcrypt_pbkdf.c
index 414c5e4e36..73cda43576 100644
--- a/libs/libssh2/src/bcrypt_pbkdf.c
+++ b/libs/libssh2/src/bcrypt_pbkdf.c
@@ -116,7 +116,7 @@ bcrypt_pbkdf(const char *pass, size_t passlen, const uint8_t *salt,
if(rounds < 1)
return -1;
if(passlen == 0 || saltlen == 0 || keylen == 0 ||
- keylen > sizeof(out) * sizeof(out) || saltlen > 1<<20)
+ keylen > sizeof(out) * sizeof(out) || saltlen > 1 << 20)
return -1;
countsalt = calloc(1, saltlen + 4);
if(!countsalt)