diff options
author | tobhe <tobhe@cvs.openbsd.org> | 2021-01-23 21:35:49 +0000 |
---|---|---|
committer | tobhe <tobhe@cvs.openbsd.org> | 2021-01-23 21:35:49 +0000 |
commit | 3131b21a6f2495f8c1ac8e78d65766171e430e7c (patch) | |
tree | 43238c55c469a0407dd752645b64b5ea0bff9cef /sbin | |
parent | d2b879621650794fe47afe3dd2f229098cdb1db7 (diff) |
Fix typos.
From Ryan Kavanagh
ok patrick@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/iked/iked.conf.5 | 6 | ||||
-rw-r--r-- | sbin/iked/ikev2.c | 4 | ||||
-rw-r--r-- | sbin/iked/pfkey.c | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/sbin/iked/iked.conf.5 b/sbin/iked/iked.conf.5 index 4faa5550fd0..856e6d18d5f 100644 --- a/sbin/iked/iked.conf.5 +++ b/sbin/iked/iked.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: iked.conf.5,v 1.81 2020/12/28 19:13:12 tobhe Exp $ +.\" $OpenBSD: iked.conf.5,v 1.82 2021/01/23 21:35:48 tobhe Exp $ .\" .\" Copyright (c) 2010 - 2014 Reyk Floeter <reyk@openbsd.org> .\" Copyright (c) 2004 Mathieu Sauve-Frankel All rights reserved. @@ -15,7 +15,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: December 28 2020 $ +.Dd $Mdocdate: January 23 2021 $ .Dt IKED.CONF 5 .Os .Sh NAME @@ -193,7 +193,7 @@ have to be placed in .Pp The optional .Ic tolerate -parameter specifies how much the OCSP reponse attribute +parameter specifies how much the OCSP response attribute .Sq thisUpdate may be in the future and how much .Sq nextUpdate diff --git a/sbin/iked/ikev2.c b/sbin/iked/ikev2.c index 3b552f7468a..94b6c6af415 100644 --- a/sbin/iked/ikev2.c +++ b/sbin/iked/ikev2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ikev2.c,v 1.297 2021/01/21 16:50:46 tobhe Exp $ */ +/* $OpenBSD: ikev2.c,v 1.298 2021/01/23 21:35:48 tobhe Exp $ */ /* * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de> @@ -2755,7 +2755,7 @@ ikev2_resp_recv(struct iked *env, struct iked_message *msg, } if (ikev2_resp_ike_sa_init(env, msg) != 0) { log_debug("%s: failed to send init response", __func__); - ikev2_ike_sa_setreason(sa, "SA_INIT reponse failed"); + ikev2_ike_sa_setreason(sa, "SA_INIT response failed"); sa_state(env, sa, IKEV2_STATE_CLOSED); return; } diff --git a/sbin/iked/pfkey.c b/sbin/iked/pfkey.c index 8f97419c9e2..a7d0eccdb8c 100644 --- a/sbin/iked/pfkey.c +++ b/sbin/iked/pfkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkey.c,v 1.74 2020/12/04 16:18:14 tobhe Exp $ */ +/* $OpenBSD: pfkey.c,v 1.75 2021/01/23 21:35:48 tobhe Exp $ */ /* * Copyright (c) 2010-2013 Reyk Floeter <reyk@openbsd.org> @@ -1050,7 +1050,7 @@ pfkey_sa_getspi(int sd, uint8_t satype, struct iked_childsa *sa, goto done; } if ((sa_ext = pfkey_find_ext(data, n, SADB_EXT_SA)) == NULL) { - log_debug("%s: erronous reply", __func__); + log_debug("%s: erroneous reply", __func__); goto done; } |