Module Name: src
Committed By: ozaki-r
Date: Thu Jul 20 03:12:05 UTC 2017
Modified Files:
src/sys/netipsec: xform_ah.c
Log Message:
Fix a debug message
To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/sys/netipsec/xform_ah.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netipsec/xform_ah.c
diff -u src/sys/netipsec/xform_ah.c:1.65 src/sys/netipsec/xform_ah.c:1.66
--- src/sys/netipsec/xform_ah.c:1.65 Wed Jul 19 10:26:09 2017
+++ src/sys/netipsec/xform_ah.c Thu Jul 20 03:12:05 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: xform_ah.c,v 1.65 2017/07/19 10:26:09 ozaki-r Exp $ */
+/* $NetBSD: xform_ah.c,v 1.66 2017/07/20 03:12:05 ozaki-r Exp $ */
/* $FreeBSD: src/sys/netipsec/xform_ah.c,v 1.1.4.1 2003/01/24 05:11:36 sam Exp $ */
/* $OpenBSD: ip_ah.c,v 1.63 2001/06/26 06:18:58 angelos Exp $ */
/*
@@ -39,7 +39,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xform_ah.c,v 1.65 2017/07/19 10:26:09 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xform_ah.c,v 1.66 2017/07/20 03:12:05 ozaki-r Exp $");
#if defined(_KERNEL_OPT)
#include "opt_inet.h"
@@ -708,7 +708,7 @@ ah_input(struct mbuf *m, struct secasvar
error = m_makewritable(&m, 0, extra, M_NOWAIT);
if (error) {
m_freem(m);
- DPRINTF(("%s: failed to copyback_cow\n", __func__));
+ DPRINTF(("%s: failed to m_makewritable\n", __func__));
AH_STATINC(AH_STAT_HDROPS);
free(tc, M_XDATA);
crypto_freereq(crp);