mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-03-24 11:23:12 -04:00
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
This commit is contained in:
parent
99be255ed1
commit
18a68256da
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue