summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1601cc5)
raw | patch | inline | side by side (parent: 1601cc5)
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | |
Tue, 29 Jul 2003 05:49:23 +0000 (05:49 +0000) | ||
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | |
Tue, 29 Jul 2003 05:49:23 +0000 (05:49 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@617 f882894a-f735-0410-b71e-b25c423dba1c
plugins/utils.c | patch | blob | history |
diff --git a/plugins/utils.c b/plugins/utils.c
index e63c8c08823021bf192d424b55d1ecfa5aa10382..128052d01325939e67ba89ebeb5db91d58c27c80 100644 (file)
--- a/plugins/utils.c
+++ b/plugins/utils.c
#include <arpa/inet.h>
+extern void print_usage (void);
extern int timeout_interval;
extern const char *progname;
#define TXTBLK 128
/* **************************************************************************
- /* max_state(STATE_x, STATE_y)
+ * max_state(STATE_x, STATE_y)
* compares STATE_x to STATE_y and returns result based on the following
* STATE_UNKNOWN < STATE_OK < STATE_WARNING < STATE_CRITICAL
*
void
support (void)
{
- printf
- ("Send email to nagios-users@lists.sourceforge.net if you have questions\n"
- "regarding use of this software. To submit patches or suggest improvements,\n"
- "send email to nagiosplug-devel@lists.sourceforge.net\n");
+ printf (_("\n\
+Send email to nagios-users@lists.sourceforge.net if you have questions\n\
+regarding use of this software. To submit patches or suggest improvements,\n\
+send email to nagiosplug-devel@lists.sourceforge.net\n"));
}
if (sscanf (revision_string, "$Revision: %[0-9.]", plugin_revision) != 1)
strncpy (plugin_revision, "N/A", STRLEN);
printf ("%s (%s %s) %s\n",
- progname, PACKAGE, VERSION, plugin_revision);
- printf
- ("The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\n"
- "copies of the plugins under the terms of the GNU General Public License.\n"
- "For more information about these matters, see the file named COPYING.\n");
+ command_name, PACKAGE, VERSION, plugin_revision);
+ printf (_("\
+The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute\n\
+copies of the plugins under the terms of the GNU General Public License.\n\
+For more information about these matters, see the file named COPYING.\n"));
}