From: Maria Matejka Date: Wed, 17 Dec 2025 13:21:55 +0000 (+0100) Subject: Minor typos in error messages X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=21986f418d25eeeed49ed6d9014b467d8da7f69c;p=thirdparty%2Fbird.git Minor typos in error messages Reported-By: Marco d'Itri --- diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index 83d20f9c4..a0d94915c 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -38,7 +38,7 @@ ospf_iface_finish(void) ip->passwords = get_passwords(); if (ospf_cfg_is_v2() && (ip->autype == OSPF_AUTH_CRYPT) && (ip->helloint < 5)) - cf_warn("Hello or poll interval less that 5 makes cryptographic authenication prone to replay attacks"); + cf_warn("Hello or poll interval less that 5 makes cryptographic authentication prone to replay attacks"); if ((ip->autype == OSPF_AUTH_NONE) && (ip->passwords != NULL)) cf_warn("Password option without authentication option does not make sense"); diff --git a/proto/rpki/rpki.c b/proto/rpki/rpki.c index 327c6215b..0d1c48f57 100644 --- a/proto/rpki/rpki.c +++ b/proto/rpki/rpki.c @@ -179,7 +179,7 @@ rpki_table_remove_aspa(struct rpki_cache *cache, struct channel *channel, u32 cu static const char *str_cache_states[] = { [RPKI_CS_CONNECTING] = "Connecting", [RPKI_CS_ESTABLISHED] = "Established", - [RPKI_CS_RESET] = "Reseting", + [RPKI_CS_RESET] = "Resetting", [RPKI_CS_SYNC_START] = "Sync-Start", [RPKI_CS_SYNC_RUNNING] = "Sync-Running", [RPKI_CS_FAST_RECONNECT] = "Fast-Reconnect", diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index 0a32865fd..98345d58b 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -1425,7 +1425,7 @@ sk_ssh_connect(sock *s) break; case SSH_SERVER_FOUND_OTHER: - LOG_WARN_ABOUT_SSH_SERVER_VALIDATION(s, "The server gave use a key of a type while we had an other type recorded. " \ + LOG_WARN_ABOUT_SSH_SERVER_VALIDATION(s, "The server gave use a key of a different type than we have recorded. " \ "It is a possible attack."); server_identity_is_ok = 0; break;