diff options
author | se <se@FreeBSD.org> | 1994-10-26 19:23:02 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 1994-10-26 19:23:02 +0000 |
commit | 7169429ec5e236bb310bb7c57159598372a56b69 (patch) | |
tree | a6c0edb2c218227ee30f80590949eff69a06527b /usr.sbin/ncrcontrol | |
parent | 41601d75370d6043be480fa165660e93084b3e00 (diff) | |
download | FreeBSD-src-7169429ec5e236bb310bb7c57159598372a56b69.zip FreeBSD-src-7169429ec5e236bb310bb7c57159598372a56b69.tar.gz |
Fix typo in #if which prevented use of getbootfile() under FreeBSD-2.0.
Diffstat (limited to 'usr.sbin/ncrcontrol')
-rw-r--r-- | usr.sbin/ncrcontrol/ncrcontrol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ncrcontrol/ncrcontrol.c b/usr.sbin/ncrcontrol/ncrcontrol.c index 46e3434..77f80af 100644 --- a/usr.sbin/ncrcontrol/ncrcontrol.c +++ b/usr.sbin/ncrcontrol/ncrcontrol.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: ncrcontrol.c,v 1.2 1994/10/13 18:01:32 se Exp $ +** $Id: ncrcontrol.c,v 1.3 1994/10/15 00:03:32 se Exp $ ** ** Utility for NCR 53C810 device driver. ** @@ -180,7 +180,7 @@ void open_kvm(int flags) if (kvm_isopen) return; -#if (__FreeBSD >= 2) +#if (__FreeBSD__ >= 2) vmunix = getbootfile(); #endif if (vmunix == NULL) { |