svn commit: r216797 - stable/8/sbin/mount_nfs

Simon L. Nielsen simon at FreeBSD.org
Wed Dec 29 12:25:45 UTC 2010


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':


More information about the svn-src-stable mailing list