Code

Fix includes for gettext
[nagiosplug.git] / plugins / check_radius.c
index 725cf9f8ad68ffeb8744d05dfe49e9e1ccdfdcd0..9e1046865e2e4e0a574db7cb2bdc786e460f37f4 100644 (file)
@@ -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";
@@ -24,6 +26,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net";
 #include "common.h"
 #include "utils.h"
 #include "netutils.h"
+
 #include <radiusclient.h>
 
 int process_arguments (int, char **);
@@ -94,13 +97,15 @@ Please note that all tags must be lowercase to use the DocBook XML DTD.
 -@@
 ******************************************************************************/
 
+
+
 int
 main (int argc, char **argv)
 {
        UINT4 service;
        char msg[BUFFER_LEN];
        SEND_DATA data;
-       int result;
+       int result = STATE_UNKNOWN;
        UINT4 client_id;
        char *str;
 
@@ -109,7 +114,7 @@ main (int argc, char **argv)
        textdomain (PACKAGE);
 
        if (process_arguments (argc, argv) == ERROR)
-               usage (_("Could not parse arguments\n"));
+               usage4 (_("Could not parse arguments"));
 
        str = strdup ("dictionary");
        if ((config_file && rc_read_config (config_file)) ||
@@ -199,7 +204,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 +232,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 +240,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 +276,6 @@ process_arguments (int argc, char **argv)
 
 
 
-
-
-\f
 void
 print_help (void)
 {
@@ -329,12 +331,10 @@ otherwise compormise could occur.\n"));
 
 
 
-
 void
 print_usage (void)
 {
        printf ("\
 Usage: %s -H host -F config_file -u username -p password [-n nas-id] [-P port]\n\
-  [-t timeout] [-r retries] [-e expect]\n", progname);
-       printf (_(UT_HLP_VRS), progname, progname);
+                  [-t timeout] [-r retries] [-e expect]\n", progname);
 }