Tweak versions comment for CRLs
authortb <tb@openbsd.org>
Tue, 26 Mar 2024 22:45:38 +0000 (22:45 +0000)
committertb <tb@openbsd.org>
Tue, 26 Mar 2024 22:45:38 +0000 (22:45 +0000)
lib/libcrypto/x509/x509cset.c

index a80d5f2..859c972 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509cset.c,v 1.20 2024/03/26 11:09:37 tb Exp $ */
+/* $OpenBSD: x509cset.c,v 1.21 2024/03/26 22:45:38 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2001.
  */
@@ -81,6 +81,7 @@ X509_CRL_set_version(X509_CRL *x, long version)
        /*
         * RFC 5280, 4.1: versions 1 - 3 are specified as follows.
         * Version  ::=  INTEGER  {  v1(0), v2(1), v3(2) }
+        * The only specified versions for CRLs are 1 and 2.
         */
        if (version < 0 || version > 1)
                return (0);