From owner-cvs-src-old@FreeBSD.ORG Sat Feb 27 18:27:56 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 030EE1065702 for ; Sat, 27 Feb 2010 18:27:56 +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 E5A3F8FC12 for ; Sat, 27 Feb 2010 18:27:55 +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 o1RIRtxR096337 for ; Sat, 27 Feb 2010 18:27:55 GMT (envelope-from ume@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1RIRted096336 for cvs-src-old@freebsd.org; Sat, 27 Feb 2010 18:27:55 GMT (envelope-from ume@repoman.freebsd.org) Message-Id: <201002271827.o1RIRted096336@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ume@repoman.freebsd.org using -f From: Hajimu UMEMOTO Date: Sat, 27 Feb 2010 18:27:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 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: Sat, 27 Feb 2010 18:27:56 -0000 ume 2010-02-27 18:27:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sbin/mount_nfs mount_nfs.c sbin/umount umount.c Log: SVN rev 204422 on 2010-02-27 18:27:32Z by ume MFC r203490: 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. Revision Changes Path 1.88.2.4 +16 -6 src/sbin/mount_nfs/mount_nfs.c 1.46.2.3 +10 -3 src/sbin/umount/umount.c