diff options
author | tb <> | 2024-12-24 10:52:43 +0000 |
---|---|---|
committer | tb <> | 2024-12-24 10:52:43 +0000 |
commit | b1eba63695c02a7b0951a5c0dde982f7fb350e69 (patch) | |
tree | f96fdab69133ace1f9146e18c9e8ca8e4c59cb86 /src | |
parent | 6a844cf69ae4b0d31a8e2b18b94524ec66ec58df (diff) | |
download | openbsd-b1eba63695c02a7b0951a5c0dde982f7fb350e69.tar.gz openbsd-b1eba63695c02a7b0951a5c0dde982f7fb350e69.tar.bz2 openbsd-b1eba63695c02a7b0951a5c0dde982f7fb350e69.zip |
Tweak doc comment of _X509_CHECK_FLAG_DOT_SUBDOMAINS
Now that it lives in a .c file, there's no need to point out that it is
non-public...
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/x509/x509_utl.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libcrypto/x509/x509_utl.c b/src/lib/libcrypto/x509/x509_utl.c index 0acd8f1d41..0427b4c6ef 100644 --- a/src/lib/libcrypto/x509/x509_utl.c +++ b/src/lib/libcrypto/x509/x509_utl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_utl.c,v 1.24 2024/12/23 09:57:23 tb Exp $ */ | 1 | /* $OpenBSD: x509_utl.c,v 1.25 2024/12/24 10:52:43 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project. | 3 | * project. |
4 | */ | 4 | */ |
@@ -72,9 +72,8 @@ | |||
72 | #include "bytestring.h" | 72 | #include "bytestring.h" |
73 | 73 | ||
74 | /* | 74 | /* |
75 | * Match reference identifiers starting with "." to any sub-domain. | 75 | * Match reference identifiers starting with "." to any sub-domain. This |
76 | * This is a non-public flag, turned on implicitly when the subject | 76 | * flag is set implicitly when the subject reference identity is a DNS name. |
77 | * reference identity is a DNS name. | ||
78 | */ | 77 | */ |
79 | #define _X509_CHECK_FLAG_DOT_SUBDOMAINS 0x8000 | 78 | #define _X509_CHECK_FLAG_DOT_SUBDOMAINS 0x8000 |
80 | 79 | ||