diff options
author | jkh <jkh@FreeBSD.org> | 1998-02-10 17:19:12 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-02-10 17:19:12 +0000 |
commit | ea609c7dcd5c120bd58d6ca529108edb37eed8f3 (patch) | |
tree | b1dfecaedc815d94fcee6fe6d7f29c0efddc7b1d /lib/libdisk/create_chunk.c | |
parent | 01d55887a1ddda5814f52998e2d581acb1fbd011 (diff) | |
download | FreeBSD-src-ea609c7dcd5c120bd58d6ca529108edb37eed8f3.zip FreeBSD-src-ea609c7dcd5c120bd58d6ca529108edb37eed8f3.tar.gz |
Be more verbose if we can't determine device major/minor.
Diffstat (limited to 'lib/libdisk/create_chunk.c')
-rw-r--r-- | lib/libdisk/create_chunk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libdisk/create_chunk.c b/lib/libdisk/create_chunk.c index f8f7a21..646c829 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.27 1997/02/22 15:06:31 peter Exp $ + * $Id: create_chunk.c,v 1.28 1998/01/16 12:50:36 jkh Exp $ * */ @@ -262,6 +262,7 @@ MakeDev(struct chunk *c1, const char *path) else if (!strncmp(p, "da", 2)) /* CAM support */ bmaj = 4, cmaj = 13; else { + msgDebug("MakeDev: Unknown major/minor for devtype %s\n", p); return 0; } p += 2; |