diff options
author | Benedict Reuschling <bcr@FreeBSD.org> | 2025-01-14 12:58:53 +0000 |
---|---|---|
committer | Benedict Reuschling <bcr@FreeBSD.org> | 2025-01-14 12:58:53 +0000 |
commit | 49f4e3d297d26ce6b8e2a2b790bc6357edd064c4 (patch) | |
tree | f09caadf8c12b753a0d9f09190210871a68b6666 | |
parent | dc4581589a3256667fafd46a30c67abdfd86618f (diff) |
pkg: Fix two typos in visible error messages
No functional changes.
-rw-r--r-- | usr.sbin/pkg/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg/config.c b/usr.sbin/pkg/config.c index 23bccb7eb96e..fe1599f42c2c 100644 --- a/usr.sbin/pkg/config.c +++ b/usr.sbin/pkg/config.c @@ -342,7 +342,7 @@ parse_signature_type(struct repository *repo, const char *st) else if (strcasecmp(st, "NONE") == 0) repo->signature_type = SIGNATURE_NONE; else { - warnx("Signature type %s is not supported for bootstraping," + warnx("Signature type %s is not supported for bootstrapping," " ignoring repository %s", st, repo->name); free(repo->url); free(repo->name); @@ -441,7 +441,7 @@ read_conf_file(const char *confpath, const char *requested_repo, ucl_object_t *obj = NULL; const char *abi = pkg_get_myabi(); if (abi == NULL) - errx(EXIT_FAILURE, "Fail do determine ABI"); + errx(EXIT_FAILURE, "Failed to determine ABI"); p = ucl_parser_new(0); ucl_parser_register_variable(p, "ABI", abi); |