summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprocter <procter@openbsd.org>2018-02-07 22:46:11 +0000
committerprocter <procter@openbsd.org>2018-02-07 22:46:11 +0000
commitc5b3b6d94e2eab173675027656e135da9a7a9513 (patch)
treeb2e15117bc99c6b91b86083ca83879196d5ecb4e
parentadd SIOCSETKALIVE to the list of ioctls that need root and NET_LOCK (diff)
downloadwireguard-openbsd-c5b3b6d94e2eab173675027656e135da9a7a9513.tar.xz
wireguard-openbsd-c5b3b6d94e2eab173675027656e135da9a7a9513.zip
comment change only. ok bluhm@
-rw-r--r--sys/netinet/ip_ah.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_ah.c b/sys/netinet/ip_ah.c
index 6564aaf8a77..a43a19fa84e 100644
--- a/sys/netinet/ip_ah.c
+++ b/sys/netinet/ip_ah.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ah.c,v 1.135 2018/02/06 14:54:22 bluhm Exp $ */
+/* $OpenBSD: ip_ah.c,v 1.136 2018/02/07 22:46:11 procter Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
* Angelos D. Keromytis (kermit@csd.uch.gr) and
@@ -670,7 +670,7 @@ ah_input(struct mbuf *m, struct tdb *tdb, int skip, int protoff)
error = ah_massage_headers(&m, tdb->tdb_dst.sa.sa_family, skip,
ahx->type, 0);
if (error) {
- /* mbuf will be free'd by callee. */
+ /* mbuf was freed by callee. */
free(tc, M_XDATA, 0);
crypto_freereq(crp);
return error;
@@ -1158,7 +1158,7 @@ ah_output(struct mbuf *m, struct tdb *tdb, struct mbuf **mp, int skip,
error = ah_massage_headers(&m, tdb->tdb_dst.sa.sa_family, skip,
ahx->type, 1);
if (error) {
- /* mbuf will be free'd by callee. */
+ /* mbuf was freed by callee. */
free(tc, M_XDATA, 0);
crypto_freereq(crp);
return error;