check_ups/check_dbi: Fixing spelling bug

This commit is contained in:
Jan Wagner 2014-06-23 22:20:03 +02:00
parent f52efd00bf
commit be55da1d23
2 changed files with 6 additions and 6 deletions

View file

@ -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);
}

View file

@ -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;