From ace96e4412ba820018716663f467b22eb6420be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Tue, 8 May 2018 10:17:06 +0200 Subject: [PATCH] * src/hsts.h: Fix header guard --- src/hsts.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/hsts.h b/src/hsts.h index 257f0b04..0065d9f6 100644 --- a/src/hsts.h +++ b/src/hsts.h @@ -26,13 +26,13 @@ grants you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of OpenSSL used as well as that of the covered work. */ -#include "wget.h" + +#ifndef WGET_HSTS_H +#define WGET_HSTS_H #ifdef HAVE_HSTS -#ifndef HSTS_H -#define HSTS_H - +#include "wget.h" #include "url.h" typedef struct hsts_store *hsts_store_t; @@ -48,5 +48,5 @@ bool hsts_store_entry (hsts_store_t, time_t, bool); bool hsts_match (hsts_store_t, struct url *); -#endif /* HSTS_H */ #endif /* HAVE_HSTS */ +#endif /* WGET_HSTS_H */