Move X509V3_add_standard_extensions out of the way
authortb <tb@openbsd.org>
Sat, 11 May 2024 18:59:39 +0000 (18:59 +0000)
committertb <tb@openbsd.org>
Sat, 11 May 2024 18:59:39 +0000 (18:59 +0000)
This function is only used by OpenLDAP and it's been a noop since
forever. It has no business to be squeezed in between a number of
other, quite unrelated functions. It's distracting.

lib/libcrypto/x509/x509_lib.c

index 45ed940..578f55e 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509_lib.c,v 1.19 2024/05/11 18:52:52 tb Exp $ */
+/* $OpenBSD: x509_lib.c,v 1.20 2024/05/11 18:59:39 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 1999.
  */
@@ -161,13 +161,6 @@ X509V3_EXT_get(X509_EXTENSION *ext)
 }
 LCRYPTO_ALIAS(X509V3_EXT_get);
 
-int
-X509V3_add_standard_extensions(void)
-{
-       return 1;
-}
-LCRYPTO_ALIAS(X509V3_add_standard_extensions);
-
 /* Return an extension internal structure */
 
 void *
@@ -332,3 +325,10 @@ err:
        return 0;
 }
 LCRYPTO_ALIAS(X509V3_add1_i2d);
+
+int
+X509V3_add_standard_extensions(void)
+{
+       return 1;
+}
+LCRYPTO_ALIAS(X509V3_add_standard_extensions);