From owner-svn-src-head@FreeBSD.ORG Fri May 22 20:55:30 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BB1B106564A; Fri, 22 May 2009 20:55:30 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ECC018FC1E; Fri, 22 May 2009 20:55:29 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4MKtTG6018561; Fri, 22 May 2009 20:55:29 GMT (envelope-from rmacklem@svn.freebsd.org) Received: (from rmacklem@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4MKtTrh018560; Fri, 22 May 2009 20:55:29 GMT (envelope-from rmacklem@svn.freebsd.org) Message-Id: <200905222055.n4MKtTrh018560@svn.freebsd.org> From: Rick Macklem Date: Fri, 22 May 2009 20:55:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192601 - head/sys/fs/nfsclient X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 May 2009 20:55:30 -0000 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);