summaryrefslogtreecommitdiff
path: root/sbin/newfs/newfs.c
diff options
context:
space:
mode:
authorBrandon Creighton <bjc@cvs.openbsd.org>2000-04-30 05:07:47 +0000
committerBrandon Creighton <bjc@cvs.openbsd.org>2000-04-30 05:07:47 +0000
commit0f1d42ca589f42dc0bb726bbdc76bd9420b0c002 (patch)
treeb9e2352288f72622c565010bf85b5e0d9d2828d9 /sbin/newfs/newfs.c
parent0f8c232a33526f0f8196a91a7518ce7c393378e9 (diff)
#ifdef vax -> #ifdef __vax__
Diffstat (limited to 'sbin/newfs/newfs.c')
-rw-r--r--sbin/newfs/newfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c
index 603f4e3e52b..29560602d36 100644
--- a/sbin/newfs/newfs.c
+++ b/sbin/newfs/newfs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: newfs.c,v 1.21 2000/03/21 21:58:04 jason Exp $ */
+/* $OpenBSD: newfs.c,v 1.22 2000/04/30 05:07:46 bjc Exp $ */
/* $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)newfs.c 8.8 (Berkeley) 4/18/94";
#else
-static char rcsid[] = "$OpenBSD: newfs.c,v 1.21 2000/03/21 21:58:04 jason Exp $";
+static char rcsid[] = "$OpenBSD: newfs.c,v 1.22 2000/04/30 05:07:46 bjc Exp $";
#endif
#endif /* not lint */
@@ -646,7 +646,7 @@ rewritelabel(s, fd, lp)
warn("ioctl (WDINFO)");
fatal("%s: can't rewrite disk label", s);
}
-#if vax
+#ifdef __vax__
if (lp->d_type == DTYPE_SMD && lp->d_flags & D_BADSECT) {
register i;
int cfd;
@@ -681,7 +681,7 @@ rewritelabel(s, fd, lp)
}
close(cfd);
}
-#endif
+#endif /*__vax__*/
}
/*VARARGS*/