[monitoring-plugins] check_ups/check_dbi: Fixing spelling bug
Jan Wagner
git at monitoring-plugins.org
Mon Jun 23 22:30:09 CEST 2014
Module: monitoring-plugins
Branch: master
Commit: be55da1d2301c002e0ae7b70c21e75cc6b1997a8
Author: Jan Wagner <waja at cyconet.org>
Date: Mon Jun 23 22:20:03 2014 +0200
URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=be55da1
check_ups/check_dbi: Fixing spelling bug
---
plugins/check_dbi.c | 6 +++---
plugins/check_ups.c | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/plugins/check_dbi.c b/plugins/check_dbi.c
index c6244fd..a3d033f 100644
--- a/plugins/check_dbi.c
+++ b/plugins/check_dbi.c
@@ -215,7 +215,7 @@ main (int argc, char **argv)
}
if (dbi_conn_connect (conn) < 0) {
- np_dbi_print_error (conn, "UNKOWN - failed to connect to database");
+ np_dbi_print_error (conn, "UNKNOWN - failed to connect to database");
return STATE_UNKNOWN;
}
@@ -241,7 +241,7 @@ main (int argc, char **argv)
printf ("Selecting database '%s'\n", np_dbi_database);
if (dbi_conn_select_db (conn, np_dbi_database)) {
- np_dbi_print_error (conn, "UNKOWN - failed to select database '%s'",
+ np_dbi_print_error (conn, "UNKNOWN - failed to select database '%s'",
np_dbi_database);
return STATE_UNKNOWN;
}
@@ -456,7 +456,7 @@ process_arguments (int argc, char **argv)
new = realloc (np_dbi_options,
(np_dbi_options_num + 1) * sizeof (*new));
if (! new) {
- printf ("UNKOWN - failed to reallocate memory\n");
+ printf ("UNKNOWN - failed to reallocate memory\n");
exit (STATE_UNKNOWN);
}
diff --git a/plugins/check_ups.c b/plugins/check_ups.c
index 7cced49..099881d 100644
--- a/plugins/check_ups.c
+++ b/plugins/check_ups.c
@@ -66,7 +66,7 @@ enum {
#define UPSSTATUS_BOOST 512
#define UPSSTATUS_CHRG 1024
#define UPSSTATUS_DISCHRG 2048
-#define UPSSTATUS_UNKOWN 4096
+#define UPSSTATUS_UNKNOWN 4096
enum { NOSUCHVAR = ERROR-1 };
@@ -181,7 +181,7 @@ main (int argc, char **argv)
if (status & UPSSTATUS_DISCHRG) {
xasprintf (&ups_status, "%s%s", ups_status, _(", Discharging"));
}
- if (status & UPSSTATUS_UNKOWN) {
+ if (status & UPSSTATUS_UNKNOWN) {
xasprintf (&ups_status, "%s%s", ups_status, _(", Unknown"));
}
}
@@ -379,7 +379,7 @@ determine_status (void)
else if (!strcmp (ptr, "DISCHRG"))
status |= UPSSTATUS_DISCHRG;
else
- status |= UPSSTATUS_UNKOWN;
+ status |= UPSSTATUS_UNKNOWN;
}
return OK;
More information about the Commits
mailing list