diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-27 04:39:40 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-03-27 04:39:40 +0000 |
commit | ea04172c2de7166d55587bd419b310ac650215a8 (patch) | |
tree | c96cb42870f18e35b715dd460535ce873d960560 /sys/miscfs/kernfs/kernfs_vnops.c | |
parent | f7b95b5aea5e03410c4d9cd3739a28882a44673c (diff) |
Make kern.osrevision (sysctl) and /kern/osrev report value of
OpenBSD define, not BSD which is a bit more useful.
Diffstat (limited to 'sys/miscfs/kernfs/kernfs_vnops.c')
-rw-r--r-- | sys/miscfs/kernfs/kernfs_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/kernfs/kernfs_vnops.c b/sys/miscfs/kernfs/kernfs_vnops.c index 0a94d88248b..8b7f2f814eb 100644 --- a/sys/miscfs/kernfs/kernfs_vnops.c +++ b/sys/miscfs/kernfs/kernfs_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kernfs_vnops.c,v 1.7 1997/02/20 01:08:12 deraadt Exp $ */ +/* $OpenBSD: kernfs_vnops.c,v 1.8 1997/03/27 04:39:39 millert Exp $ */ /* $NetBSD: kernfs_vnops.c,v 1.43 1996/03/16 23:52:47 christos Exp $ */ /* @@ -70,7 +70,7 @@ static int byteorder = BYTE_ORDER; static int posix = _POSIX_VERSION; -static int osrev = BSD; +static int osrev = OpenBSD; static int ncpu = 1; /* XXX */ extern char machine[], cpu_model[]; extern char ostype[], osrelease[]; |