From owner-svn-src-head@FreeBSD.ORG Fri Sep 16 09:38:01 2011 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 C14D21065675; Fri, 16 Sep 2011 09:38:01 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B0D768FC19; Fri, 16 Sep 2011 09:38:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p8G9c13L013549; Fri, 16 Sep 2011 09:38:01 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p8G9c1eu013547; Fri, 16 Sep 2011 09:38:01 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201109160938.p8G9c1eu013547@svn.freebsd.org> From: Nathan Whitehorn Date: Fri, 16 Sep 2011 09:38:01 +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: r225613 - head/usr.sbin/bsdinstall/partedit 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, 16 Sep 2011 09:38:01 -0000 Author: nwhitehorn Date: Fri Sep 16 09:38:01 2011 New Revision: 225613 URL: http://svn.freebsd.org/changeset/base/225613 Log: Fix a typo introduced in r219892 that prevented file system options from being set correctly. Approved by: re (kib) Modified: head/usr.sbin/bsdinstall/partedit/gpart_ops.c Modified: head/usr.sbin/bsdinstall/partedit/gpart_ops.c ============================================================================== --- head/usr.sbin/bsdinstall/partedit/gpart_ops.c Fri Sep 16 09:37:13 2011 (r225612) +++ head/usr.sbin/bsdinstall/partedit/gpart_ops.c Fri Sep 16 09:38:01 2011 (r225613) @@ -862,7 +862,7 @@ addpartform: * If the user changed the fs type after specifying options, undo * their choices in favor of the new filesystem's defaults. */ - if (strcmp(options_fstype, items[0].name) != 0) { + if (strcmp(options_fstype, items[0].text) != 0) { strncpy(options_fstype, items[0].text, sizeof(options_fstype)); newfs_command(options_fstype, newfs, 1); }