summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiss <hweiss@users.sourceforge.net>2007-06-17 19:34:55 (GMT)
committerHolger Weiss <hweiss@users.sourceforge.net>2007-06-17 19:34:55 (GMT)
commit79b221828648c97f09136cafb89b0479f60f9d38 (patch)
tree4c8436dd47c495316b7beb7e83ed824ef64e4b1c
parent02033903c04113f12b80638c91131cbaf4a50a2f (diff)
downloadmonitoring-plugins-79b221828648c97f09136cafb89b0479f60f9d38.tar.gz
Minor fixes.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1743 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--plugins/check_http.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index 45d24a9..26a074d 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -43,6 +43,8 @@ const char *revision = "$Revision$";
43const char *copyright = "1999-2006"; 43const char *copyright = "1999-2006";
44const char *email = "nagiosplug-devel@lists.sourceforge.net"; 44const char *email = "nagiosplug-devel@lists.sourceforge.net";
45 45
46#include <ctype.h>
47
46#include "common.h" 48#include "common.h"
47#include "netutils.h" 49#include "netutils.h"
48#include "utils.h" 50#include "utils.h"
@@ -1199,7 +1201,7 @@ redir (char *pos, char *status_line)
1199 display_html ? "</A>" : ""); 1201 display_html ? "</A>" : "");
1200 1202
1201 if (verbose) 1203 if (verbose)
1202 printf ("Redirection to %s://%s:%d%s\n", server_type, server_address, 1204 printf (_("Redirection to %s://%s:%d%s\n"), server_type, server_address,
1203 server_port, server_url); 1205 server_port, server_url);
1204 1206
1205 check_http (); 1207 check_http ();