From owner-svn-src-head@FreeBSD.ORG Fri Nov 21 09:14:30 2008 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 096F31065673; Fri, 21 Nov 2008 09:14:30 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EE7408FC1F; Fri, 21 Nov 2008 09:14:29 +0000 (UTC) (envelope-from luigi@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 mAL9ET1q080276; Fri, 21 Nov 2008 09:14:29 GMT (envelope-from luigi@svn.freebsd.org) Received: (from luigi@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mAL9ET1u080275; Fri, 21 Nov 2008 09:14:29 GMT (envelope-from luigi@svn.freebsd.org) Message-Id: <200811210914.mAL9ET1u080275@svn.freebsd.org> From: Luigi Rizzo Date: Fri, 21 Nov 2008 09:14: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: r185155 - head/lib/libstand 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, 21 Nov 2008 09:14:30 -0000 Author: luigi Date: Fri Nov 21 09:14:29 2008 New Revision: 185155 URL: http://svn.freebsd.org/changeset/base/185155 Log: use the correct variable in a debug message. Modified: head/lib/libstand/nfs.c Modified: head/lib/libstand/nfs.c ============================================================================== --- head/lib/libstand/nfs.c Fri Nov 21 09:10:35 2008 (r185154) +++ head/lib/libstand/nfs.c Fri Nov 21 09:14:29 2008 (r185155) @@ -405,7 +405,7 @@ nfs_open(upath, f) #ifdef NFS_DEBUG if (debug) - printf("nfs_open: %s (rootpath=%s)\n", path, rootpath); + printf("nfs_open: %s (rootpath=%s)\n", upath, rootpath); #endif if (!rootpath[0]) { printf("no rootpath, no nfs\n");