summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2023-03-11 21:14:26 +0000
committertb <>2023-03-11 21:14:26 +0000
commite6d5f42388b2168766dd16c5b2092770c522dc7e (patch)
tree5b921a2849d0b58ded2d4333a78899ffa39adc02 /src/lib
parenta8b72ad29b3a088eb9a345433b00861cd0b20819 (diff)
downloadopenbsd-e6d5f42388b2168766dd16c5b2092770c522dc7e.tar.gz
openbsd-e6d5f42388b2168766dd16c5b2092770c522dc7e.tar.bz2
openbsd-e6d5f42388b2168766dd16c5b2092770c522dc7e.zip
Remove a few extra spaces
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/rsa/rsa_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_lib.c b/src/lib/libcrypto/rsa/rsa_lib.c
index 3689c0b54d..9656252d77 100644
--- a/src/lib/libcrypto/rsa/rsa_lib.c
+++ b/src/lib/libcrypto/rsa/rsa_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsa_lib.c,v 1.45 2023/03/07 09:27:10 jsing Exp $ */ 1/* $OpenBSD: rsa_lib.c,v 1.46 2023/03/11 21:14:26 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 *
@@ -298,7 +298,7 @@ RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp)
298 if ((r->dmp1 == NULL && dmp1 == NULL) || 298 if ((r->dmp1 == NULL && dmp1 == NULL) ||
299 (r->dmq1 == NULL && dmq1 == NULL) || 299 (r->dmq1 == NULL && dmq1 == NULL) ||
300 (r->iqmp == NULL && iqmp == NULL)) 300 (r->iqmp == NULL && iqmp == NULL))
301 return 0; 301 return 0;
302 302
303 if (dmp1 != NULL) { 303 if (dmp1 != NULL) {
304 BN_free(r->dmp1); 304 BN_free(r->dmp1);