diff options
author | 2004-08-09 10:11:37 +0000 | |
---|---|---|
committer | 2004-08-09 10:11:37 +0000 | |
commit | b74f4c5ae83edb2e724e5afb76ad694dad2f436d (patch) | |
tree | 13d762e302cd02326e85af50b474758d85150161 | |
parent | Unbreak RAMDISK; deraadt (diff) | |
download | wireguard-openbsd-b74f4c5ae83edb2e724e5afb76ad694dad2f436d.tar.xz wireguard-openbsd-b74f4c5ae83edb2e724e5afb76ad694dad2f436d.zip |
maxpartitions 16, so our slices are a-p not a-h.
-rw-r--r-- | sys/arch/sgi/sgi/autoconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sgi/sgi/autoconf.c b/sys/arch/sgi/sgi/autoconf.c index cadf9f1318b..2017a22d6f9 100644 --- a/sys/arch/sgi/sgi/autoconf.c +++ b/sys/arch/sgi/sgi/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.1 2004/08/06 21:12:19 pefo Exp $ */ +/* $OpenBSD: autoconf.c,v 1.2 2004/08/09 10:11:37 miod Exp $ */ /* * Copyright (c) 1996 Per Fogelstrom * Copyright (c) 1995 Theo de Raadt @@ -41,7 +41,7 @@ * from: Utah Hdr: autoconf.c 1.31 91/01/21 * * from: @(#)autoconf.c 8.1 (Berkeley) 6/10/93 - * $Id: autoconf.c,v 1.1 2004/08/06 21:12:19 pefo Exp $ + * $Id: autoconf.c,v 1.2 2004/08/09 10:11:37 miod Exp $ */ /* @@ -170,7 +170,7 @@ getdisk(str, len, defpart, devp) for (dv = alldevs.tqh_first; dv != NULL; dv = dv->dv_list.tqe_next) { if (dv->dv_class == DV_DISK) - printf(" %s[a-h]", dv->dv_xname); + printf(" %s[a-p]", dv->dv_xname); #ifdef NFSCLIENT if (dv->dv_class == DV_IFNET) printf(" %s", dv->dv_xname); |