Explorar el Código

Minor fixes.

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1743 f882894a-f735-0410-b71e-b25c423dba1c
Holger Weiss hace 18 años
padre
commit
79b2218286
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      plugins/check_http.c

+ 3 - 1
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 ();