diff options
author | jmg <jmg@FreeBSD.org> | 2004-08-09 06:45:20 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2004-08-09 06:45:20 +0000 |
commit | 547a1b99a434393e7061c62a17e9501bcaf1e757 (patch) | |
tree | 669ca3643f977a1fa7a51a372215c3d7f6da6103 /sbin/mdconfig | |
parent | b3e3b3af6123bc483e3f101b4a35cbe2135d76ed (diff) | |
download | FreeBSD-src-547a1b99a434393e7061c62a17e9501bcaf1e757.zip FreeBSD-src-547a1b99a434393e7061c62a17e9501bcaf1e757.tar.gz |
change the name of the md module, to g_md, introduce a define with the
name MD_MODNAME, and make mdconfig use this new define...
Diffstat (limited to 'sbin/mdconfig')
-rw-r--r-- | sbin/mdconfig/mdconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/mdconfig/mdconfig.c b/sbin/mdconfig/mdconfig.c index d83148d..0fb47bc 100644 --- a/sbin/mdconfig/mdconfig.c +++ b/sbin/mdconfig/mdconfig.c @@ -292,7 +292,7 @@ mdmaybeload(void) const char *name; char *cp; - name = MD_NAME; + name = MD_MODNAME; /* scan files in kernel */ mstat.version = sizeof(struct module_stat); for (fileid = kldnext(0); fileid > 0; fileid = kldnext(fileid)) { |