From 59f1daae7d9911f6d92290ae3f4842c89f6ac045 Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 9 Sep 2016 11:39:11 +0000 Subject: missing space after comma (this was apparently lost during the repo surgery) ok bcook --- src/lib/libcrypto/rsa/rsa_eay.c | 4 ++-- 1 file 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 @@ -/* $OpenBSD: rsa_eay.c,v 1.42 2016/07/07 11:53:12 bcook Exp $ */ +/* $OpenBSD: rsa_eay.c,v 1.43 2016/09/09 11:39:11 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -227,7 +227,7 @@ RSA_eay_public_encrypt(int flen, const unsigned char *from, unsigned char *to, CRYPTO_LOCK_RSA, rsa->n, ctx)) goto err; - if (!rsa->meth->bn_mod_exp(ret, f,rsa->e, rsa->n, ctx, + if (!rsa->meth->bn_mod_exp(ret, f, rsa->e, rsa->n, ctx, rsa->_method_mod_n)) goto err; -- cgit v1.2.3-55-g6feb