summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2016-09-09 11:39:11 +0000
committertb <>2016-09-09 11:39:11 +0000
commit59f1daae7d9911f6d92290ae3f4842c89f6ac045 (patch)
tree442d2589bc9b4618c92c23cc52497c60e1a6c461
parentee7fadb5bf3c6358023d31338abd6537dd7492c6 (diff)
downloadopenbsd-59f1daae7d9911f6d92290ae3f4842c89f6ac045.tar.gz
openbsd-59f1daae7d9911f6d92290ae3f4842c89f6ac045.tar.bz2
openbsd-59f1daae7d9911f6d92290ae3f4842c89f6ac045.zip
missing space after comma
(this was apparently lost during the repo surgery) ok bcook
-rw-r--r--src/lib/libcrypto/rsa/rsa_eay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_eay.c b/src/lib/libcrypto/rsa/rsa_eay.c
index 2facd1c6f6..af76541c28 100644
--- a/src/lib/libcrypto/rsa/rsa_eay.c
+++ b/src/lib/libcrypto/rsa/rsa_eay.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsa_eay.c,v 1.42 2016/07/07 11:53:12 bcook Exp $ */ 1/* $OpenBSD: rsa_eay.c,v 1.43 2016/09/09 11:39:11 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -227,7 +227,7 @@ RSA_eay_public_encrypt(int flen, const unsigned char *from, unsigned char *to,
227 CRYPTO_LOCK_RSA, rsa->n, ctx)) 227 CRYPTO_LOCK_RSA, rsa->n, ctx))
228 goto err; 228 goto err;
229 229
230 if (!rsa->meth->bn_mod_exp(ret, f,rsa->e, rsa->n, ctx, 230 if (!rsa->meth->bn_mod_exp(ret, f, rsa->e, rsa->n, ctx,
231 rsa->_method_mod_n)) 231 rsa->_method_mod_n))
232 goto err; 232 goto err;
233 233