From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Leif Lindholm Date: Wed, 14 Nov 2018 19:29:15 +0000 Subject: [PATCH] include/grub/verify.h: Add include guard verify.h was added without include guards. This means compiling anything including both include/grub/verify.h and include/grub/lib/cmdline.h fails (at least grub-core/loader/arm64/linux.c. Add the necessary include guard. Signed-off-by: Leif Lindholm Reviewed-by: Daniel Kiper --- include/grub/verify.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/grub/verify.h b/include/grub/verify.h index 60c13e7ea..ace72d746 100644 --- a/include/grub/verify.h +++ b/include/grub/verify.h @@ -16,6 +16,9 @@ * along with GRUB. If not, see . */ +#ifndef GRUB_VERIFY_HEADER +#define GRUB_VERIFY_HEADER 1 + #include #include @@ -89,3 +92,5 @@ char grub_is_dangerous_module (grub_file_t io); * Returns the name if one is loaded, otherwise NULL. */ const char *grub_dangerous_module_loaded (void); + +#endif /* ! GRUB_VERIFY_HEADER */