Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Dec 2010 12:25:45 +0000 (UTC)
From:      "Simon L. Nielsen" <simon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r216797 - stable/8/sbin/mount_nfs
Message-ID:  <201012291225.oBTCPjEF000610@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: simon
Date: Wed Dec 29 12:25:45 2010
New Revision: 216797
URL: http://svn.freebsd.org/changeset/base/216797

Log:
  MFC r216725:
  
  Fix deprecated warning about -L which said -i was deprecated.

Modified:
  stable/8/sbin/mount_nfs/mount_nfs.c
Directory Properties:
  stable/8/sbin/mount_nfs/   (props changed)

Modified: stable/8/sbin/mount_nfs/mount_nfs.c
==============================================================================
--- stable/8/sbin/mount_nfs/mount_nfs.c	Wed Dec 29 12:25:28 2010	(r216796)
+++ stable/8/sbin/mount_nfs/mount_nfs.c	Wed Dec 29 12:25:45 2010	(r216797)
@@ -213,7 +213,7 @@ main(int argc, char *argv[])
 			build_iovec(&iov, &iovlen, "intr", NULL, 0);
 			break;
 		case 'L':
-			printf("-i deprecated, use -o nolockd\n");
+			printf("-L deprecated, use -o nolockd\n");
 			build_iovec(&iov, &iovlen, "nolockd", NULL, 0);
 			break;
 		case 'l':



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