summaryrefslogtreecommitdiffstats
path: root/cipher.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2021-04-03 17:47:37 +1100
committerDamien Miller <djm@mindrot.org>2021-04-03 17:47:37 +1100
commit57ed647ee07bb883a2f2264231bcd1df6a5b9392 (patch)
treeb6857717f688761bc7c4891ece4b23a4413076fa /cipher.c
parent31d8d231eb9377df474746a822d380c5d68d7ad6 (diff)
polish whitespace for portable files
Diffstat (limited to 'cipher.c')
-rw-r--r--cipher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher.c b/cipher.c
index 38d5bee7..5b3a86d6 100644
--- a/cipher.c
+++ b/cipher.c
@@ -494,7 +494,7 @@ cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, size_t len)
#endif
if (cipher_authlen(c)) {
if (!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN,
- len, iv))
+ len, iv))
return SSH_ERR_LIBCRYPTO_ERROR;
} else if (!EVP_CIPHER_CTX_get_iv(cc->evp, iv, len))
return SSH_ERR_LIBCRYPTO_ERROR;