Module Name: src
Committed By: riastradh
Date: Sun May 22 21:31:48 UTC 2022
Modified Files:
src/sys/sys: param.h
Log Message:
sys/param.h: Welcome to 9.99.97, courtesy of opencrypto cleanup.
crypto_dispatch, crypto_kdispatch, and crypto_freesession now return
void, as does the opencrypto driver's freesession callback.
To generate a diff of this commit:
cvs rdiff -u -r1.709 -r1.710 src/sys/sys/param.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/sys/param.h
diff -u src/sys/sys/param.h:1.709 src/sys/sys/param.h:1.710
--- src/sys/sys/param.h:1.709 Sun Mar 27 16:16:39 2022
+++ src/sys/sys/param.h Sun May 22 21:31:48 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.709 2022/03/27 16:16:39 christos Exp $ */
+/* $NetBSD: param.h,v 1.710 2022/05/22 21:31:48 riastradh Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -67,7 +67,7 @@
* 2.99.9 (299000900)
*/
-#define __NetBSD_Version__ 999009600 /* NetBSD 9.99.96 */
+#define __NetBSD_Version__ 999009700 /* NetBSD 9.99.97 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)