summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2000-06-25 16:25:33 +0000
committerthorpej <thorpej@NetBSD.org>2000-06-25 16:25:33 +0000
commit81a51455cd5cdcdced97dc4e4f3b8103342d29d2 (patch)
treea1369a59c5d870f073a2d751c952c91bdce9c6b7 /etc
parentbd66c9dafc6ffb5178686267b9eab097f39be582 (diff)
Fix brain'o in last, pointed out by Johan Danielsson.
Diffstat (limited to 'etc')
-rw-r--r--etc/etc.i386/MAKEDEV5
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV
index d4b206df354..537ef9e4115 100644
--- a/etc/etc.i386/MAKEDEV
+++ b/etc/etc.i386/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $NetBSD: MAKEDEV,v 1.119 2000/06/24 00:43:26 thorpej Exp $
+# $NetBSD: MAKEDEV,v 1.120 2000/06/25 16:25:33 thorpej Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -663,8 +663,9 @@ cfs*)
;;
sysmon)
+ major=67
rm -f sysmon
- mknod sysmon c $major $unit
+ mknod sysmon c $major 0
chown root.wheel sysmon
chmod 644 sysmon
;;