diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-02-01 19:38:24 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-02-01 19:38:24 +0000 |
commit | 8d9ef28ffcc24514c377c460418cb2b109bd7bac (patch) | |
tree | 9b89c2f06342959e09ad8ec0ca6e6429443a5716 /sys | |
parent | cdbe547fd9fd4e2c23468fff01089a5cb073770b (diff) |
Default kernel is bsd around these parts.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/sparc64/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/sparc64/machdep.c b/sys/arch/sparc64/sparc64/machdep.c index 8410f635ebf..9457609d96e 100644 --- a/sys/arch/sparc64/sparc64/machdep.c +++ b/sys/arch/sparc64/sparc64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.31 2002/01/23 17:51:52 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.32 2002/02/01 19:38:23 jason Exp $ */ /* $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */ /*- @@ -535,9 +535,9 @@ cpu_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p) /* * We can leave it NULL && let userland handle * the failure or set it to the default name, - * `netbsd' + * `bsd' */ - cp = "netbsd"; + cp = "bsd"; } if (cp == NULL || cp[0] == '\0') return (ENOENT); |