From acbe08cbc5df6d601430be1e7b5b6ef6ff1fdcd7 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Mon, 16 Sep 2024 06:49:17 +0200 Subject: [PATCH] Add missing header guards Signed-off-by: DL6ER --- src/FTL.h | 1 - src/database/sqlite3-ext.h | 5 +++++ src/ntp/server.c | 1 - src/tools/gravity-parseList.h | 5 +++++ src/webserver/webserver.c | 2 +- 5 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/FTL.h b/src/FTL.h index 64986a20..5eb91005 100644 --- a/src/FTL.h +++ b/src/FTL.h @@ -33,7 +33,6 @@ #include #include #include -//#include #include // syslog #include diff --git a/src/database/sqlite3-ext.h b/src/database/sqlite3-ext.h index 2636eb5d..56426571 100644 --- a/src/database/sqlite3-ext.h +++ b/src/database/sqlite3-ext.h @@ -8,5 +8,10 @@ * This file is copyright under the latest version of the EUPL. * Please see LICENSE file for your rights under this license. */ +#ifndef SQLITE3_EXT_H +#define SQLITE3_EXT_H + // Initialization point for SQLite3 extensions extern int sqlite3_pihole_extensions_init(sqlite3 *db, const char **pzErrMsg, const struct sqlite3_api_routines *pApi); + +#endif // SQLITE3_EXT_H \ No newline at end of file diff --git a/src/ntp/server.c b/src/ntp/server.c index ae9eed9c..7c89fd07 100644 --- a/src/ntp/server.c +++ b/src/ntp/server.c @@ -19,7 +19,6 @@ #include // clock_gettime() #include -//#include #include // wait() #include diff --git a/src/tools/gravity-parseList.h b/src/tools/gravity-parseList.h index e9e54ac4..b3e816b0 100644 --- a/src/tools/gravity-parseList.h +++ b/src/tools/gravity-parseList.h @@ -8,7 +8,12 @@ * This file is copyright under the latest version of the EUPL. * Please see LICENSE file for your rights under this license. */ +#ifndef GRAVITY_PARSELIST_H +#define GRAVITY_PARSELIST_H + #include "FTL.h" int gravity_parseList(const char *infile, const char *outfile, const char *adlistID, const bool checkOnly, const bool antigravity); bool __attribute__((pure)) valid_domain(const char *domain, const size_t len, const bool fqdn_only); + +#endif // GRAVITY_PARSELIST_H \ No newline at end of file diff --git a/src/webserver/webserver.c b/src/webserver/webserver.c index b3b05b94..cc4fe929 100644 --- a/src/webserver/webserver.c +++ b/src/webserver/webserver.c @@ -606,7 +606,7 @@ void FTL_rewrite_pattern(char *filename, unsigned long filename_buf_len) filename_lp = append_to_path(filename, ".lp"); if(filename_lp == NULL) { - //Failed to allocate memory for filename!"); + // Failed to allocate memory for filename return; }