summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ipsec_input.c
diff options
context:
space:
mode:
authorbluhm <bluhm@openbsd.org>2013-06-01 16:29:00 +0000
committerbluhm <bluhm@openbsd.org>2013-06-01 16:29:00 +0000
commita09be4ca14ec053a73b56a0a4e71f082be175c12 (patch)
tree72997a397f882922f8f573b30bebf802f6b55135 /sys/netinet/ipsec_input.c
parentIf popbuf() fails, calling function should return FALSE. (diff)
downloadwireguard-openbsd-a09be4ca14ec053a73b56a0a4e71f082be175c12.tar.xz
wireguard-openbsd-a09be4ca14ec053a73b56a0a4e71f082be175c12.zip
Fix typo backswards -> backwards.
Diffstat (limited to 'sys/netinet/ipsec_input.c')
-rw-r--r--sys/netinet/ipsec_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c
index af9946496f2..f3ec0992fcd 100644
--- a/sys/netinet/ipsec_input.c
+++ b/sys/netinet/ipsec_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipsec_input.c,v 1.114 2013/04/24 10:17:08 mpi Exp $ */
+/* $OpenBSD: ipsec_input.c,v 1.115 2013/06/01 16:29:00 bluhm Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
* Angelos D. Keromytis (kermit@csd.uch.gr) and
@@ -996,7 +996,7 @@ ipsec_common_ctlinput(u_int rdomain, int cmd, struct sockaddr *sa,
return (NULL);
}
- /* Walk the chain backswards to the first tdb */
+ /* Walk the chain backwards to the first tdb */
for (; tdbp; tdbp = tdbp->tdb_inext) {
if (tdbp->tdb_flags & TDBF_INVALID ||
(adjust = ipsec_hdrsz(tdbp)) == -1) {