diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-01 23:54:51 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-01 23:54:51 +0000 |
commit | d19edd4043c498626fe68308005947975ef0a697 (patch) | |
tree | 7a213ee16f9331e928b1c32aa6c521c05519db58 /plugins/check_radius.c | |
parent | 1d8128e328f714258b7fec0c62245e1d187e0439 (diff) | |
download | monitoring-plugins-d19edd4043c498626fe68308005947975ef0a697.tar.gz |
standardize localization string
standardize unknow arguments
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@969 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_radius.c')
-rw-r--r-- | plugins/check_radius.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/check_radius.c b/plugins/check_radius.c index 725cf9f8..3e6bdcae 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c @@ -14,6 +14,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + $Id$ + ******************************************************************************/ const char *progname = "check_radius"; @@ -94,6 +96,8 @@ Please note that all tags must be lowercase to use the DocBook XML DTD. -@@ ******************************************************************************/ + + int main (int argc, char **argv) { @@ -109,7 +113,7 @@ main (int argc, char **argv) textdomain (PACKAGE); if (process_arguments (argc, argv) == ERROR) - usage (_("Could not parse arguments\n")); + usage (_("check_radius: could not parse arguments\n")); str = strdup ("dictionary"); if ((config_file && rc_read_config (config_file)) || @@ -199,7 +203,7 @@ process_arguments (int argc, char **argv) if (is_intpos (argv[7])) port = atoi (argv[7]); else - usage (_("Server port must be a positive integer")); + usage (_("Port must be a positive integer")); expect = argv[8]; return OK; } @@ -227,7 +231,7 @@ process_arguments (int argc, char **argv) break; case 'H': /* hostname */ if (is_host (optarg) == FALSE) { - usage2 (_("Invalid host name/address"), optarg); + usage2 (_("Invalid hostname/address"), optarg); } server = optarg; break; @@ -235,7 +239,7 @@ process_arguments (int argc, char **argv) if (is_intnonneg (optarg)) port = atoi (optarg); else - usage (_("Server port must be a positive integer")); + usage (_("Port must be a positive integer")); break; case 'u': /* username */ username = optarg; @@ -271,9 +275,6 @@ process_arguments (int argc, char **argv) - - - void print_help (void) { @@ -329,7 +330,6 @@ otherwise compormise could occur.\n")); - void print_usage (void) { |