mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Be consistent about module names.
This commit is contained in:
parent
87eca0f99c
commit
98e7d61119
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue