summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2022-11-13 22:03:25 (GMT)
committerSven Nierlein <sven@nierlein.org>2023-01-07 17:34:46 (GMT)
commitd4502f246f367af5e1d6b3944116f1d86beb5811 (patch)
tree707c02ffe62048aada4bcb8b90d8c3eabcb85414
parentc0c096d2ef0d838e869a63aba07e6538e46db674 (diff)
downloadmonitoring-plugins-d4502f2.tar.gz
Remove legacy comments and add some new ones
-rw-r--r--plugins/check_http.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index ca8746b..859e3e3 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -31,9 +31,6 @@
31 * 31 *
32 *****************************************************************************/ 32 *****************************************************************************/
33 33
34/* splint -I. -I../../plugins -I../../lib/ -I/usr/kerberos/include/
35 * ../../plugins/check_http.c */
36
37const char *progname = "check_http"; 34const char *progname = "check_http";
38const char *copyright = "1999-2022"; 35const char *copyright = "1999-2022";
39const char *email = "devel@monitoring-plugins.org"; 36const char *email = "devel@monitoring-plugins.org";
@@ -136,6 +133,7 @@ char buffer[MAX_INPUT_BUFFER];
136char *client_cert = NULL; 133char *client_cert = NULL;
137char *client_privkey = NULL; 134char *client_privkey = NULL;
138 135
136// Forward function declarations
139bool process_arguments(int, char **); 137bool process_arguments(int, char **);
140int check_http(void); 138int check_http(void);
141void redir(char *pos, char *status_line); 139void redir(char *pos, char *status_line);