Code

Typo fixes (Jan Wagner - SF 1878971)
[nagiosplug.git] / plugins / check_ups.c
index a498d203ecc7d640ca3338c13e33b023c2db21fa..c6964d89a7cd19bf7de72ee5d1dc0334b15eafc7 100644 (file)
@@ -8,8 +8,6 @@
 *               2004 Arnaud Quette <arnaud.quette@mgeups.com>
 * Copyright (c) 2002-2007 Nagios Plugins Development Team
 * 
-* Last Modified: $Date$
-* 
 * Description:
 * 
 * This file contains Network UPS Tools plugin for Nagios
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * 
-* $Id$
 * 
 *****************************************************************************/
 
 const char *progname = "check_ups";
-const char *revision = "$Revision$";
 const char *copyright = "2000-2007";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
@@ -421,7 +417,7 @@ get_ups_variable (const char *varname, char *buf, size_t buflen)
        if (len > logout_len && strcmp (ptr + len - logout_len, logout) == 0) len -= logout_len;
        if (len > 0 && ptr[len-1] == '\n') ptr[len-1]=0;
        if (strcmp (ptr, "ERR UNKNOWN-UPS") == 0) {
-               printf (_("CRITICAL - no such ups '%s' on that host\n"), ups_name);
+               printf (_("CRITICAL - no such UPS '%s' on that host\n"), ups_name);
                return ERROR;
        }
 
@@ -561,7 +557,7 @@ process_arguments (int argc, char **argv)
                        }
                        break;
                case 'V':                                                                       /* version */
-                       print_revision (progname, revision);
+                       print_revision (progname, NP_VERSION);
                        exit (STATE_OK);
                case 'h':                                                                       /* help */
                        print_help ();
@@ -588,7 +584,7 @@ int
 validate_arguments (void)
 {
        if (! ups_name) {
-               printf ("%s\n", _("Error : no ups indicated"));
+               printf ("%s\n", _("Error : no UPS indicated"));
                return ERROR;
        }
        return OK;
@@ -601,7 +597,7 @@ print_help (void)
        char *myport;
        asprintf (&myport, "%d", PORT);
 
-       print_revision (progname, revision);
+       print_revision (progname, NP_VERSION);
 
        printf ("Copyright (c) 2000 Tom Shields\n");
        printf ("Copyright (c) 2004 Alain Richard <alain.richard@equation.fr>\n");
@@ -649,7 +645,7 @@ print_help (void)
   printf (" %s\n", _("of that variable.  If the remote host has multiple UPS that are being monitored"));
   printf (" %s\n", _("you will have to use the --ups option to specify which UPS to check."));
   printf ("\n");
-  printf (" %s\n", _("This plugin requires that the UPSD daemon distributed with Russel Kroll's"));
+  printf (" %s\n", _("This plugin requires that the UPSD daemon distributed with Russell Kroll's"));
   printf (" %s\n", _("Smart UPS Tools be installed on the remote host. If you do not have the"));
   printf (" %s\n", _("package installed on your system, you can download it from"));
   printf (" %s\n", _("http://www.networkupstools.org"));