diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 20:28:53 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 20:28:53 +0000 |
commit | edf60f6dceba48555f2534d9a217a8c5913ce029 (patch) | |
tree | e49b58832bc1d9252c3a8eeeadd65b4a85efc140 /plugins/negate.c | |
parent | 5d420d68fa25dd1b48d1b3f1a067fb45d98e67c2 (diff) | |
download | monitoring-plugins-edf60f6dceba48555f2534d9a217a8c5913ce029.tar.gz |
remove UT_HLP_VRS from print_usage
this was not a good idea ;-)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@994 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/negate.c')
-rw-r--r-- | plugins/negate.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index e03f7e68..74a9a9dd 100644 --- a/plugins/negate.c +++ b/plugins/negate.c @@ -239,11 +239,10 @@ print_help (void) { print_revision (progname, revision); - printf (_(COPYRIGHT), copyright, email); + printf (COPYRIGHT, copyright, email); printf (_("\ -Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n\ -\n")); +Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).\n\n")); print_usage (); @@ -274,8 +273,5 @@ Otherwise, the output state of the wrapped plugin is unchanged.\n")); void print_usage (void) { - printf ("Usage: %s [-t timeout] <definition of wrapped plugin>\n", - progname); - - printf (UT_HLP_VRS, progname, progname); + printf ("Usage: %s [-t timeout] <definition of wrapped plugin>\n",progname); } |