Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 May 2009 20:55:29 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r192601 - head/sys/fs/nfsclient
Message-ID:  <200905222055.n4MKtTrh018560@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905222055.n4MKtTrh018560>