[monitoring-plugins] Undo sorting of header file includes, it breaks ...

Sven Nierlein git at monitoring-plugins.org
Sat Jan 7 18:40:13 CET 2023


    Module: monitoring-plugins
    Branch: master
    Commit: 48d6ef2557605d9815e242c4a4f19c0dcdc37c28
    Author: RincewindsHat <12514511+RincewindsHat at users.noreply.github.com>
 Committer: Sven Nierlein <sven at nierlein.org>
      Date: Mon Nov 14 00:32:44 2022 +0100
       URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=48d6ef2

Undo sorting of header file includes, it breaks the build

---

 plugins/check_http.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/plugins/check_http.c b/plugins/check_http.c
index 5710cfe..5e4536e 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -35,8 +35,10 @@ const char *progname = "check_http";
 const char *copyright = "1999-2022";
 const char *email = "devel at monitoring-plugins.org";
 
-#include "base64.h"
+// Do NOT sort those headers, it will break the build
+// TODO: Fix this
 #include "common.h"
+#include "base64.h"
 #include "netutils.h"
 #include "utils.h"
 #include <ctype.h>



More information about the Commits mailing list