Przeglądaj źródła

--disable-nls throws an error on check_dns, check_procs and
check_ldap without this patch.


git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@981 f882894a-f735-0410-b71e-b25c423dba1c

Benoit Mortier 21 lat temu
rodzic
commit
3f05eb7fcb
3 zmienionych plików z 10 dodań i 3 usunięć
  1. 1 1
      plugins/check_dns.c
  2. 8 1
      plugins/check_ldap.c
  3. 1 1
      plugins/check_procs.c

+ 1 - 1
plugins/check_dns.c

@@ -196,7 +196,7 @@ main (int argc, char **argv)
 			multi_address = TRUE;
 
 		printf ("DNS %s: ", _("OK"));
-		printf (ngettext("%.3f second response time, ", "%.3f seconds response time, ", elapsed_time), elapsed_time);
+		printf (_("%.3f seconds response time"), elapsed_time);
 		printf (_("%s returns %s"), query_address, address);
 		printf ("|%s\n", fperfdata ("time", elapsed_time, "s", FALSE, 0, FALSE, 0, TRUE, 0, FALSE, 0));
 	}

+ 8 - 1
plugins/check_ldap.c

@@ -335,6 +335,13 @@ print_usage (void)
 Usage: %s -H <host> -b <base_dn> [-p <port>] [-a <attr>] [-D <binddn>]\n\
   [-P <password>] [-w <warn_time>] [-c <crit_time>] [-t timeout]%s\n\
 (Note: all times are in seconds.)\n"),
-	        progname, (HAVE_LDAP_SET_OPTION ? "[-2|-3] [-4|-6]" : ""));
+	        progname,
+#ifdef HAVE_LDAP_SET_OPTION
+			" [-2|-3] [-4|-6]"
+#else
+			""
+#endif
+			);
+
 	printf (_(UT_HLP_VRS), progname, progname);
 }

+ 1 - 1
plugins/check_procs.c

@@ -277,7 +277,7 @@ main (int argc, char **argv)
 			printf (_("%d crit, %d warn out of "), crit, warn);
 		}
 	} 
-	printf (ngettext ("%d process", "%d processes", (unsigned long) procs), procs);
+	printf ("%d %s", procs, procs == 1 ? _("process") : _("processes"));
 	
 	if (strcmp(fmt,"") != 0) {
 		printf (_(" with %s"), fmt);