Remove a few extra spaces
authortb <tb@openbsd.org>
Sat, 11 Mar 2023 21:14:26 +0000 (21:14 +0000)
committertb <tb@openbsd.org>
Sat, 11 Mar 2023 21:14:26 +0000 (21:14 +0000)
lib/libcrypto/rsa/rsa_lib.c

index 3689c0b..9656252 100644 (file)
@@ -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);