summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa_lib.c
diff options
context:
space:
mode:
authortb <>2023-03-11 21:14:26 +0000
committertb <>2023-03-11 21:14:26 +0000
commit5c65d83b2f3c5c7766cd17895926c7238e3a6705 (patch)
tree5b921a2849d0b58ded2d4333a78899ffa39adc02 /src/lib/libcrypto/rsa/rsa_lib.c
parent6ac5e73082febbf715e9d19f2d8af9f59caa6d5b (diff)
downloadopenbsd-5c65d83b2f3c5c7766cd17895926c7238e3a6705.tar.gz
openbsd-5c65d83b2f3c5c7766cd17895926c7238e3a6705.tar.bz2
openbsd-5c65d83b2f3c5c7766cd17895926c7238e3a6705.zip
Remove a few extra spaces
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa_lib.c')
-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);