summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b467ed4)
raw | patch | inline | side by side (parent: b467ed4)
author | Benoit Mortier <opensides@users.sourceforge.net> | |
Sat, 4 Dec 2004 10:57:12 +0000 (10:57 +0000) | ||
committer | Benoit Mortier <opensides@users.sourceforge.net> | |
Sat, 4 Dec 2004 10:57:12 +0000 (10:57 +0000) |
check_hpjd needs a parenthesis removed in print_usage()
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1000 f882894a-f735-0410-b71e-b25c423dba1c
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1000 f882894a-f735-0410-b71e-b25c423dba1c
plugins/check_dns.c | patch | blob | history | |
plugins/check_hpjd.c | patch | blob | history |
diff --git a/plugins/check_dns.c b/plugins/check_dns.c
index 55165fcb34060dc6317d218abf76d1305ac4525d..b9ad29d3070b5b21f5b0a15dc510c079c3e9258e 100644 (file)
--- a/plugins/check_dns.c
+++ b/plugins/check_dns.c
multi_address = TRUE;
printf ("DNS %s: ", _("OK"));
- printf (_("%.3f seconds response 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));
}
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c
index d49661ad3498007411557bf214087ecc5213fed8..53769565b87827c84778f0472ec2ac1a94fdd2e3 100644 (file)
--- a/plugins/check_hpjd.c
+++ b/plugins/check_hpjd.c
void
print_usage (void)
{
- printf ("Usage: %s -H host [-C community]\n"), progname);
+ printf ("Usage: %s -H host [-C community]\n", progname);
}