Module Name:    src
Committed By:   ozaki-r
Date:           Fri Mar 27 05:47:38 UTC 2015

Modified Files:
        src/sys/netipsec: xform_ah.c

Log Message:
KNF


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 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.42 src/sys/netipsec/xform_ah.c:1.43
--- src/sys/netipsec/xform_ah.c:1.42	Sun Nov  3 18:37:10 2013
+++ src/sys/netipsec/xform_ah.c	Fri Mar 27 05:47:37 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: xform_ah.c,v 1.42 2013/11/03 18:37:10 mrg Exp $	*/
+/*	$NetBSD: xform_ah.c,v 1.43 2015/03/27 05:47:37 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.42 2013/11/03 18:37:10 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xform_ah.c,v 1.43 2015/03/27 05:47:37 ozaki-r Exp $");
 
 #include "opt_inet.h"
 #ifdef __FreeBSD__
@@ -891,7 +891,7 @@ ah_input_cb(struct cryptop *crp)
 	authsize = AUTHSIZE(sav);
 
 	if (ipsec_debug)
-	  memset(calc, 0, sizeof(calc));
+		memset(calc, 0, sizeof(calc));
 
 	/* Copy authenticator off the packet. */
 	m_copydata(m, skip + rplen, authsize, calc);

Reply via email to