diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-01-14 21:48:13 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1999-01-14 21:48:13 +0000 |
commit | 5a5a489faff67cf41381fb9fb2a3e07fe7a249cf (patch) | |
tree | 6a7a535279c4bfa528da1edf3c9839ee3e147488 | |
parent | 78534d41e18312cdcb6028c83c3394d958df2807 (diff) |
Notes
-rw-r--r-- | lib/libdisk/create_chunk.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c index 6e7569d2ac2c2..9bb8dd51f9da1 100644 --- a/lib/libdisk/create_chunk.c +++ b/lib/libdisk/create_chunk.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: create_chunk.c,v 1.32 1998/10/27 21:14:03 msmith Exp $ + * $Id: create_chunk.c,v 1.33 1999/01/08 00:32:19 jkh Exp $ * */ @@ -264,6 +264,8 @@ MakeDev(struct chunk *c1, const char *path) bmaj = 4, cmaj = 13, p += 2; else if (!strncmp(p, "wfd", 3)) bmaj = 1, cmaj = 87, p += 3; + else if (!strncmp(p, "fla", 3)) + bmaj = 28, cmaj = 101, p += 3; else if (!strncmp(p, "da", 2)) /* CAM support */ bmaj = 4, cmaj = 13, p += 2; else { |