summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1999-11-27 21:20:57 +0000
committerMike Smith <msmith@FreeBSD.org>1999-11-27 21:20:57 +0000
commit78c8bacf3578d1eb5afc6ee187853380eb7302d3 (patch)
treebbeb9bbf81261056d82d25deb270d521bbad5abf
parentaac7434a6332499671e8a220c38c91d264c7f6fb (diff)
Notes
-rw-r--r--lib/libdisk/create_chunk.c2
-rw-r--r--lib/libdisk/disk.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c
index 8c5ed6488f3b..95b10ae21a28 100644
--- a/lib/libdisk/create_chunk.c
+++ b/lib/libdisk/create_chunk.c
@@ -255,8 +255,6 @@ MakeDev(struct chunk *c1, const char *path)
bmaj = 0, cmaj = 3, p += 2;
else if (!strncmp(p, "ad", 2)) /* XXX change if "ad' moves */
bmaj = 0, cmaj = 3, p += 2;
- else if (!strncmp(p, "sd", 2))
- bmaj = 4, cmaj = 13, p += 2;
else if (!strncmp(p, "wfd", 3))
bmaj = 1, cmaj = 87, p += 3;
else if (!strncmp(p, "fla", 3))
diff --git a/lib/libdisk/disk.c b/lib/libdisk/disk.c
index cd25b37b4b42..cae69a0d8dbd 100644
--- a/lib/libdisk/disk.c
+++ b/lib/libdisk/disk.c
@@ -375,7 +375,7 @@ Collapse_Disk(struct disk *d)
}
#endif
-static char * device_list[] = {"wd", "ad", "sd", "da", "wfd", "fla", "ida", "mlxd", "amrd", 0};
+static char * device_list[] = {"wd", "ad", "da", "wfd", "fla", "ida", "mlxd", "amrd", 0};
char **
Disk_Names()