aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/check_dbi.c6
-rw-r--r--plugins/check_ups.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/plugins/check_dbi.c b/plugins/check_dbi.c
index c6244fd2..a3d033f4 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 7cced495..099881d0 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;