Module Name: src
Committed By: ozaki-r
Date: Thu Jul 6 08:22:45 UTC 2017
Modified Files:
src/sys/opencrypto: xform.h
Log Message:
KNF
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/opencrypto/xform.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/opencrypto/xform.h
diff -u src/sys/opencrypto/xform.h:1.19 src/sys/opencrypto/xform.h:1.20
--- src/sys/opencrypto/xform.h:1.19 Thu May 26 21:50:03 2011
+++ src/sys/opencrypto/xform.h Thu Jul 6 08:22:45 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: xform.h,v 1.19 2011/05/26 21:50:03 drochner Exp $ */
+/* $NetBSD: xform.h,v 1.20 2017/07/06 08:22:45 ozaki-r Exp $ */
/* $FreeBSD: src/sys/opencrypto/xform.h,v 1.1.2.1 2002/11/21 23:34:23 sam Exp $ */
/* $OpenBSD: xform.h,v 1.10 2002/04/22 23:10:09 deraadt Exp $ */
@@ -42,8 +42,10 @@ struct auth_hash {
struct enc_xform {
int type;
const char *name;
- u_int16_t blocksize, ivsize;
- u_int16_t minkey, maxkey;
+ u_int16_t blocksize;
+ u_int16_t ivsize;
+ u_int16_t minkey;
+ u_int16_t maxkey;
};
struct comp_algo {