From bddf42895281c47274c73bdef6919113442fc8c5 Mon Sep 17 00:00:00 2001 From: phk Date: Tue, 9 May 2000 18:53:57 +0000 Subject: Change the "bdev-whiner" to whine when open is attempted and extend the deadline a month. --- sys/kern/kern_conf.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'sys/kern') diff --git a/sys/kern/kern_conf.c b/sys/kern/kern_conf.c index ff7a9d8..d6116f7 100644 --- a/sys/kern/kern_conf.c +++ b/sys/kern/kern_conf.c @@ -259,7 +259,6 @@ dev2udev(dev_t x) dev_t udev2dev(udev_t x, int b) { - static int whine; if (x == NOUDEV) return (NODEV); @@ -267,10 +266,6 @@ udev2dev(udev_t x, int b) case 0: return makedev(umajor(x), uminor(x)); case 1: - if (!whine) { - printf("WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of block devices\n"); - whine++; - } return makebdev(umajor(x), uminor(x)); default: Debugger("udev2dev(...,X)"); -- cgit v1.1