diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-26 17:23:19 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-26 17:23:19 +0000 |
commit | 119cc0d6c4ee73d5c4f5b7d45fe9ac7e597647e6 (patch) | |
tree | 25590c0547b1533f2874e950691e7a5681d03a73 /lib/libcrypto/x509 | |
parent | 3507f4dbea85f0d3d39f2bd6db10b4a4051a6277 (diff) |
Make header guards of internal headers consistent
Not all of them, only those that didn't leak into a public header...
Yes.
Diffstat (limited to 'lib/libcrypto/x509')
-rw-r--r-- | lib/libcrypto/x509/x509_local.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/x509/x509_local.h b/lib/libcrypto/x509/x509_local.h index 1b1522acaac..b0c7a197f33 100644 --- a/lib/libcrypto/x509/x509_local.h +++ b/lib/libcrypto/x509/x509_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */ +/* $OpenBSD: x509_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2013. */ @@ -56,8 +56,8 @@ * */ -#ifndef HEADER_X509_LCL_H -#define HEADER_X509_LCL_H +#ifndef HEADER_X509_LOCAL_H +#define HEADER_X509_LOCAL_H __BEGIN_HIDDEN_DECLS @@ -377,4 +377,4 @@ int name_cmp(const char *name, const char *cmp); __END_HIDDEN_DECLS -#endif /* !HEADER_X509_LCL_H */ +#endif /* !HEADER_X509_LOCAL_H */ |