From 98e7d61119f8263f186fed98dc3235cc779e93aa Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Mon, 9 Jun 2003 21:50:41 +0000 Subject: [PATCH] Be consistent about module names. --- sbin/ccdconfig/ccdconfig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/ccdconfig/ccdconfig.c b/sbin/ccdconfig/ccdconfig.c index 6113ae6f605..21833e6266e 100644 --- a/sbin/ccdconfig/ccdconfig.c +++ b/sbin/ccdconfig/ccdconfig.c @@ -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) {