Source-Changes-HG archive

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

[src/trunk]: src/sys/sys Welcome to 9.99.100



details:   https://anonhg.NetBSD.org/src/rev/52f2883f2f66
branches:  trunk
changeset: 370161:52f2883f2f66
user:      knakahara <knakahara%NetBSD.org@localhost>
date:      Tue Sep 20 02:24:18 2022 +0000

description:
Welcome to 9.99.100

    - changed the prototype of rt_replace_ifa_matched_entries()

See also the follwoing thread
    https://mail-index.netbsd.org/tech-kern/2022/09/15/msg028385.html
Advised by kre@n.o, pgoyette@n.o, gutteridge@n.o and dholland@n.o, thanks.

diffstat:

 sys/sys/param.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r d1244fd3b1ed -r 52f2883f2f66 sys/sys/param.h
--- a/sys/sys/param.h   Tue Sep 20 02:23:37 2022 +0000
+++ b/sys/sys/param.h   Tue Sep 20 02:24:18 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: param.h,v 1.712 2022/07/18 04:30:30 thorpej Exp $      */
+/*     $NetBSD: param.h,v 1.713 2022/09/20 02:24:18 knakahara Exp $    */
 
 /*-
  * Copyright (c) 1982, 1986, 1989, 1993
@@ -55,7 +55,7 @@
  *
  *     M = major version
  *     m = minor version; a minor number of 99 indicates current.
- *     r = 0 (*)
+ *     r = 0 (*) or patchlevel in 9.99
  *     p = patchlevel
  *
  * When new releases are made, src/gnu/usr.bin/groff/tmac/mdoc.local
@@ -67,7 +67,7 @@
  *     2.99.9          (299000900)
  */
 
-#define        __NetBSD_Version__      999009900       /* NetBSD 9.99.99 */
+#define        __NetBSD_Version__      999010000       /* NetBSD 9.99.100 */
 
 #define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
     (m) * 1000000) + (p) * 100) <= __NetBSD_Version__)



Home | Main Index | Thread Index | Old Index