svn commit: r192601 - head/sys/fs/nfsclient

Rick Macklem rmacklem at FreeBSD.org
Fri May 22 20:55:30 UTC 2009


Author: rmacklem
Date: Fri May 22 20:55:29 2009
New Revision: 192601
URL: http://svn.freebsd.org/changeset/base/192601

Log:
  Fix the name of the module common to the client and server
  in the experimental nfs subsystem to the correct one for
  the MODULE_DEPEND() macro.
  
  Approved by:	kib (mentor)

Modified:
  head/sys/fs/nfsclient/nfs_clport.c

Modified: head/sys/fs/nfsclient/nfs_clport.c
==============================================================================
--- head/sys/fs/nfsclient/nfs_clport.c	Fri May 22 20:08:13 2009	(r192600)
+++ head/sys/fs/nfsclient/nfs_clport.c	Fri May 22 20:55:29 2009	(r192601)
@@ -1267,5 +1267,5 @@ DECLARE_MODULE(nfscl, nfscl_mod, SI_SUB_
 
 /* So that loader and kldload(2) can find us, wherever we are.. */
 MODULE_VERSION(nfscl, 1);
-MODULE_DEPEND(nfscl, newnfsd, 1, 1, 1);
+MODULE_DEPEND(nfscl, nfscommon, 1, 1, 1);
 


More information about the svn-src-head mailing list