Simplify X509_EXTENSION_get_critical()
authortb <tb@openbsd.org>
Fri, 12 Jul 2024 09:35:54 +0000 (09:35 +0000)
committertb <tb@openbsd.org>
Fri, 12 Jul 2024 09:35:54 +0000 (09:35 +0000)
This is a silly API, but there are worse.

ok jsing

lib/libcrypto/x509/x509_v3.c

index 5ae8fab..b5aee01 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509_v3.c,v 1.37 2024/07/12 09:33:05 tb Exp $ */
+/* $OpenBSD: x509_v3.c,v 1.38 2024/07/12 09:35:54 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -290,8 +290,7 @@ X509_EXTENSION_get_critical(const X509_EXTENSION *ext)
 {
        if (ext == NULL)
                return 0;
-       if (ext->critical > 0)
-               return 1;
-       return 0;
+
+       return ext->critical > 0;
 }
 LCRYPTO_ALIAS(X509_EXTENSION_get_critical);