aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 45d24a98..26a074df 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -43,6 +43,8 @@ const char *revision = "$Revision$";
const char *copyright = "1999-2006";
const char *email = "nagiosplug-devel@lists.sourceforge.net";
+#include <ctype.h>
+
#include "common.h"
#include "netutils.h"
#include "utils.h"
@@ -1199,7 +1201,7 @@ redir (char *pos, char *status_line)
display_html ? "</A>" : "");
if (verbose)
- printf ("Redirection to %s://%s:%d%s\n", server_type, server_address,
+ printf (_("Redirection to %s://%s:%d%s\n"), server_type, server_address,
server_port, server_url);
check_http ();