aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ton Voon <tonvoon@users.sourceforge.net> 2003-03-13 21:10:59 +0000
committerGravatar Ton Voon <tonvoon@users.sourceforge.net> 2003-03-13 21:10:59 +0000
commit18a68256da0a95dbb511ec28c86a4613d325ebb5 (patch)
tree34639a3bb3ee14b2c65c6e411d940a0f3ac89ecd
parent99be255ed1402825b1cca3dd6ba8d017a03ae127 (diff)
downloadmonitoring-plugins-18a68256da0a95dbb511ec28c86a4613d325ebb5.tar.gz
Perf data without leading spaces and fix ANSI C complaint about \n
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@420 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--plugins/check_smtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
index 04df7e68..dd9f19bc 100644
--- a/plugins/check_smtp.c
+++ b/plugins/check_smtp.c
@@ -32,7 +32,7 @@ connects, but incorrect reponse messages from the host result in\n\
STATE_WARNING return values.\n";
const char *option_summary = "\
--H host [-p port] [-e expect] [-C command] [-f from addr]
+-H host [-p port] [-e expect] [-C command] [-f from addr]\n\
[-w warn] [-c crit] [-t timeout] [-n] [-v]";
const char *options = "\
@@ -200,10 +200,10 @@ main (int argc, char **argv)
result = STATE_WARNING;
if (verbose)
- printf ("SMTP %s - %7.3f sec. response time, %s|time=%7.3f\n",
+ printf ("SMTP %s - %.3f sec. response time, %s|time=%.3f\n",
state_text (result), elapsed_time, buffer, elapsed_time);
else
- printf ("SMTP %s - %7.3f second response time|time=%7.3f\n",
+ printf ("SMTP %s - %.3f second response time|time=%.3f\n",
state_text (result), elapsed_time, elapsed_time);
return result;