Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netipsec Fix a debug message



details:   https://anonhg.NetBSD.org/src/rev/35071336e6d7
branches:  trunk
changeset: 825533:35071336e6d7
user:      ozaki-r <ozaki-r%NetBSD.org@localhost>
date:      Thu Jul 20 03:12:05 2017 +0000

description:
Fix a debug message

diffstat:

 sys/netipsec/xform_ah.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r f04e4b70e3a6 -r 35071336e6d7 sys/netipsec/xform_ah.c
--- a/sys/netipsec/xform_ah.c   Thu Jul 20 02:34:24 2017 +0000
+++ b/sys/netipsec/xform_ah.c   Thu Jul 20 03:12:05 2017 +0000
@@ -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 @@
        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);



Home | Main Index | Thread Index | Old Index