diff options
author | John-Mark Gurney <jmg@FreeBSD.org> | 2004-08-09 06:45:20 +0000 |
---|---|---|
committer | John-Mark Gurney <jmg@FreeBSD.org> | 2004-08-09 06:45:20 +0000 |
commit | a246f097d608ffd15198c0933258e5cd2604c1f8 (patch) | |
tree | 669ca3643f977a1fa7a51a372215c3d7f6da6103 /sbin | |
parent | 157b106eae61057d5cc362d80dfa7caefcf99065 (diff) | |
download | src-a246f097d608ffd15198c0933258e5cd2604c1f8.tar.gz src-a246f097d608ffd15198c0933258e5cd2604c1f8.zip |
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...
Notes
Notes:
svn path=/head/; revision=133357
Diffstat (limited to 'sbin')
-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 d83148dc1d70..0fb47bcd1300 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)) { |