diff options
author | Holger Weiss <hweiss@users.sourceforge.net> | 2007-06-17 19:34:55 +0000 |
---|---|---|
committer | Holger Weiss <hweiss@users.sourceforge.net> | 2007-06-17 19:34:55 +0000 |
commit | 79b221828648c97f09136cafb89b0479f60f9d38 (patch) | |
tree | 4c8436dd47c495316b7beb7e83ed824ef64e4b1c /plugins | |
parent | 02033903c04113f12b80638c91131cbaf4a50a2f (diff) | |
download | monitoring-plugins-79b221828648c97f09136cafb89b0479f60f9d38.tar.gz |
Minor fixes.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1743 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_http.c | 4 |
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 (); |