Code

Fix translations when extra-opts aren't enabled
[nagiosplug.git] / plugins / check_hpjd.c
index b281c33a0694cb7c07bad6c7af6c1ec36f5e4c4b..e4e8e6e514c071ddc65c6974e9115de52f0d2e33 100644 (file)
@@ -1,25 +1,36 @@
-/******************************************************************************
-*
-* This program is free software; you can redistribute it and/or modify
+/*****************************************************************************
+* 
+* Nagios check_hpjd plugin
+* 
+* License: GPL
+* Copyright (c) 2000-2007 Nagios Plugins Development Team
+* 
+* Description:
+* 
+* This file contains the check_hpjd plugin
+* 
+* This plugin tests the STATUS of an HP printer with a JetDirect card.
+* Net-SNMP must be installed on the computer running the plugin.
+* 
+* 
+* This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
-* the Free Software Foundation; either version 2 of the License, or
+* the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
-*
+* 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
-*
+* 
 * You should have received a copy of the GNU General Public License
-* along with this program; if not, write to the Free Software
-* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-*
-* $Id$
+* along with this program.  If not, see <http://www.gnu.org/licenses/>.
+* 
+* 
 *****************************************************************************/
 
 const char *progname = "check_hpjd";
-const char *revision = "$Revision$";
-const char *copyright = "2000-2004";
+const char *copyright = "2000-2007";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
 #include "common.h"
@@ -85,6 +96,9 @@ main (int argc, char **argv)
        bindtextdomain (PACKAGE, LOCALEDIR);
        textdomain (PACKAGE);
 
+       /* Parse extra opts if any */
+       argv=np_extra_opts (&argc, argv, progname);
+
        if (process_arguments (argc, argv) == ERROR)
                usage4 (_("Could not parse arguments"));
 
@@ -105,7 +119,7 @@ main (int argc, char **argv)
                 HPJD_GD_DOOR_OPEN, HPJD_GD_PAPER_OUTPUT, HPJD_GD_STATUS_DISPLAY);
 
        /* get the command to run */
-       sprintf (command_line, "%s -OQa -m : -v 1 -c %s %s %s", PATH_TO_SNMPGET, community, 
+       sprintf (command_line, "%s -OQa -m : -v 1 -c %s %s %s", PATH_TO_SNMPGET, community,
                                                                        address, query_string);
 
        /* run the command */
@@ -180,7 +194,7 @@ main (int argc, char **argv)
                                strcpy (display_message, temp_buffer + 1);
                                break;
                        default:                                                                                /* fold multiline message */
-                               strncat (display_message, input_buffer, 
+                               strncat (display_message, input_buffer,
                                                sizeof (display_message) - strlen (display_message) - 1);
                        }
 
@@ -200,7 +214,7 @@ main (int argc, char **argv)
                sprintf (errmsg, "%s", input_buffer );
 
        }
-       
+
        /* close stderr */
        (void) fclose (child_stderr);
 
@@ -214,7 +228,7 @@ main (int argc, char **argv)
                /* might not be the problem, but most likely is. */
                result = STATE_UNKNOWN ;
                asprintf (&errmsg, "%s : Timeout from host %s\n", errmsg, address );
-                
+
        }
 
        /* if we had no read errors, check the printer status results... */
@@ -308,7 +322,7 @@ process_arguments (int argc, char **argv)
        if (argc < 2)
                return ERROR;
 
-       
+
        while (1) {
                c = getopt_long (argc, argv, "+hVH:C:", longopts, &option);
 
@@ -328,13 +342,13 @@ process_arguments (int argc, char **argv)
                        community = strscpy (community, optarg);
                        break;
                case 'V':                                                                       /* version */
-                       print_revision (progname, revision);
+                       print_revision (progname, NP_VERSION);
                        exit (STATE_OK);
                case 'h':                                                                       /* help */
                        print_help ();
                        exit (STATE_OK);
                case '?':                                                                       /* help */
-                       usage2 (_("Unknown argument"), optarg);
+                       usage5 ();
                }
        }
 
@@ -347,7 +361,7 @@ process_arguments (int argc, char **argv)
                        usage2 (_("Invalid hostname/address"), argv[c]);
                }
        }
-       
+
        if (community == NULL) {
                if (argv[c] != NULL )
                        community = argv[c];
@@ -369,24 +383,33 @@ validate_arguments (void)
 void
 print_help (void)
 {
-       print_revision (progname, revision);
+       print_revision (progname, NP_VERSION);
 
        printf ("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>\n");
        printf (COPYRIGHT, copyright, email);
 
-       printf (_("\
-This plugin tests the STATUS of an HP printer with a JetDirect card.\n\
-Net-snmp must be installed on the computer running the plugin.\n\n"));
+       printf ("%s\n", _("This plugin tests the STATUS of an HP printer with a JetDirect card."));
+       printf ("%s\n", _("Net-snmp must be installed on the computer running the plugin."));
+
+       printf ("\n\n");
 
        print_usage ();
 
-       printf (_(UT_HELP_VRSN));
+       printf (UT_HELP_VRSN);
+       printf (UT_EXTRA_OPTS);
+
+       printf (" %s\n", "-C, --community=STRING");
+       printf ("    %s", _("The SNMP community name "));
+       printf (_("(default=%s)"), DEFAULT_COMMUNITY);
+       printf ("\n");
 
-       printf (_("\
- -C, --community=STRING\n\
-    The SNMP community name (default=%s)\n"), DEFAULT_COMMUNITY);
+#ifdef NP_EXTRA_OPTS
+       printf ("\n");
+       printf ("%s\n", _("Notes:"));
+       printf (UT_EXTRA_OPTS_NOTES);
+#endif
 
-       printf (_(UT_SUPPORT));
+       printf (UT_SUPPORT);
 }
 
 
@@ -394,5 +417,6 @@ Net-snmp must be installed on the computer running the plugin.\n\n"));
 void
 print_usage (void)
 {
-       printf ("Usage: %s -H host [-C community]\n", progname);
+  printf (_("Usage:"));
+       printf ("%s -H host [-C community]\n", progname);
 }