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/gost | |
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/gost')
-rw-r--r-- | lib/libcrypto/gost/gost_local.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/gost/gost_local.h b/lib/libcrypto/gost/gost_local.h index 1b31f7446e3..830f14149e7 100644 --- a/lib/libcrypto/gost/gost_local.h +++ b/lib/libcrypto/gost/gost_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: gost_local.h,v 1.1 2022/11/26 16:08:53 tb Exp $ */ +/* $OpenBSD: gost_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */ /* * Copyright (c) 2014 Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> * Copyright (c) 2005-2006 Cryptocom LTD @@ -49,8 +49,8 @@ * ==================================================================== */ -#ifndef HEADER_GOST_LOCL_H -#define HEADER_GOST_LOCL_H +#ifndef HEADER_GOST_LOCAL_H +#define HEADER_GOST_LOCAL_H #include <openssl/ec.h> #include <openssl/ecdsa.h> @@ -114,4 +114,4 @@ extern int GostR3410_512_param_id(const char *value); __END_HIDDEN_DECLS -#endif +#endif /* !HEADER_GOST_LOCAL_H */ |