From owner-cvs-src-old@FreeBSD.ORG Thu Feb 4 15:17:58 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B34EC106566B for ; Thu, 4 Feb 2010 15:17:58 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A35148FC14 for ; Thu, 4 Feb 2010 15:17:58 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o14FHwB1063357 for ; Thu, 4 Feb 2010 15:17:58 GMT (envelope-from ume@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o14FHwl8063356 for cvs-src-old@freebsd.org; Thu, 4 Feb 2010 15:17:58 GMT (envelope-from ume@repoman.freebsd.org) Message-Id: <201002041517.o14FHwl8063356@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ume@repoman.freebsd.org using -f From: Hajimu UMEMOTO Date: Thu, 4 Feb 2010 15:17:49 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/mount_nfs mount_nfs.c src/sbin/umount umount.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2010 15:17:58 -0000 ume 2010-02-04 15:17:49 UTC FreeBSD src repository Modified files: sbin/mount_nfs mount_nfs.c sbin/umount umount.c Log: SVN rev 203490 on 2010-02-04 15:17:49Z by ume Introduce '[ipaddr]:path' notation. Since the existing implementation searches ':' backward, a path which includes ':' could not be mounted. You can now mount such path by enclosing an IP address by '[]'. Though we should change to search ':' forward, it will break 'ipv6addr:path' which is currently working. So, it still searches ':' backward, at least for now. MFC after: 2 weeks Revision Changes Path 1.92 +16 -6 src/sbin/mount_nfs/mount_nfs.c 1.49 +10 -3 src/sbin/umount/umount.c