diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-11 21:14:27 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-11 21:14:27 +0000 |
commit | 633227a60e31f2005784cf6c76bc4f1af0388cef (patch) | |
tree | 45b8a4f6fbdb3b9b8017d9316ab62730fa7ae124 /lib | |
parent | 74df3414ce11c4e90d3e50573c4faad07b9260d8 (diff) |
Remove a few extra spaces
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/rsa/rsa_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/rsa/rsa_lib.c b/lib/libcrypto/rsa/rsa_lib.c index 3689c0b54d1..9656252d776 100644 --- a/lib/libcrypto/rsa/rsa_lib.c +++ b/lib/libcrypto/rsa/rsa_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rsa_lib.c,v 1.45 2023/03/07 09:27:10 jsing Exp $ */ +/* $OpenBSD: rsa_lib.c,v 1.46 2023/03/11 21:14:26 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -298,7 +298,7 @@ RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) if ((r->dmp1 == NULL && dmp1 == NULL) || (r->dmq1 == NULL && dmq1 == NULL) || (r->iqmp == NULL && iqmp == NULL)) - return 0; + return 0; if (dmp1 != NULL) { BN_free(r->dmp1); |