diff options
author | 2008-01-23 16:37:55 +0000 | |
---|---|---|
committer | 2008-01-23 16:37:55 +0000 | |
commit | 713cf26678d1daf1bfade2209928a859d0bad373 (patch) | |
tree | 7c3cf1ea44112954d001f56037978d4ceb783e62 /sys/lib/libsa/unixdev.c | |
parent | Don't reset the sticky tag of a file in CVS/Entries if it is not requested. (diff) | |
download | wireguard-openbsd-713cf26678d1daf1bfade2209928a859d0bad373.tar.xz wireguard-openbsd-713cf26678d1daf1bfade2209928a859d0bad373.zip |
Cleanup cn_pri. Change constants to more meaningful names, rather than
the hp300 related ones currently in use. CN_NORMAL becomes CN_LOWPRI,
CN_INTERNAL becomes CN_MIDPRI and CN_REMOTE becomes CN_HIGHPRI.
ok miod@
Diffstat (limited to 'sys/lib/libsa/unixdev.c')
-rw-r--r-- | sys/lib/libsa/unixdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/unixdev.c b/sys/lib/libsa/unixdev.c index f3d63b3e73f..bdfd06d9ca6 100644 --- a/sys/lib/libsa/unixdev.c +++ b/sys/lib/libsa/unixdev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: unixdev.c,v 1.7 2003/08/11 06:23:09 deraadt Exp $ */ +/* $OpenBSD: unixdev.c,v 1.8 2008/01/23 16:37:56 jsing Exp $ */ /* * Copyright (c) 1996-1998 Michael Shalayeff @@ -115,7 +115,7 @@ ulseek(int fd, off_t off, int wh) void unix_probe(struct consdev *cn) { - cn->cn_pri = CN_INTERNAL; + cn->cn_pri = CN_MIDPRI; cn->cn_dev = makedev(0,0); printf("ux%d ", minor(cn->cn_dev)); } |