diff options
author | 1996-09-25 13:53:36 +0000 | |
---|---|---|
committer | 1996-09-25 13:53:36 +0000 | |
commit | 22814c10b8160c907559fc0ddf206c7adf3b281c (patch) | |
tree | 270fdc47fbf648df2abaf85015a21574962cdb1f | |
parent | need limits.h (diff) | |
download | wireguard-openbsd-22814c10b8160c907559fc0ddf206c7adf3b281c.tar.xz wireguard-openbsd-22814c10b8160c907559fc0ddf206c7adf3b281c.zip |
RAW_PART = 2
-rw-r--r-- | etc/etc.i386/MAKEDEV | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV index 74526f76a9b..0c00c1274cd 100644 --- a/etc/etc.i386/MAKEDEV +++ b/etc/etc.i386/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.25 1996/09/22 21:48:21 deraadt Exp $ +# $OpenBSD: MAKEDEV,v 1.26 1996/09/25 13:53:36 deraadt Exp $ # $NetBSD: MAKEDEV,v 1.40 1996/03/31 00:50:47 perry Exp $ # # Copyright (c) 1990 The Regents of the University of California. @@ -291,9 +291,9 @@ cd*|mcd*|acd*) esac rm -f $name$unit? r$name$unit? mknod ${name}${unit}a b $blk `expr $unit '*' 16 + 0` - mknod ${name}${unit}d b $blk `expr $unit '*' 16 + 3` + mknod ${name}${unit}c b $blk `expr $unit '*' 16 + 2` mknod r${name}${unit}a c $chr `expr $unit '*' 16 + 0` - mknod r${name}${unit}d c $chr `expr $unit '*' 16 + 3` + mknod r${name}${unit}c c $chr `expr $unit '*' 16 + 2` chown root.operator ${name}${unit}[a-h] r${name}${unit}[a-h] chmod 640 ${name}${unit}[a-h] r${name}${unit}[a-h] umask 77 |