Be consistent about module names.

This commit is contained in:
Poul-Henning Kamp 2003-06-09 21:50:41 +00:00
parent 87eca0f99c
commit 98e7d61119

View file

@ -133,8 +133,8 @@ main(int argc, char *argv[])
if (modfind("g_ccd") < 0) {
/* Not present in kernel, try loading it */
if (kldload("g_ccd") < 0 || modfind("g_ccd") < 0)
warn("g_ccd module not available!");
if (kldload("geom_ccd") < 0 || modfind("g_ccd") < 0)
warn("geom_ccd module not available!");
}
switch (action) {