From owner-svn-src-head@FreeBSD.ORG Sat Nov 29 02:28:06 2008 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 4DB741065672; Sat, 29 Nov 2008 02:28:06 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 34F218FC08; Sat, 29 Nov 2008 02:28:06 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mAT2S6ff036291; Sat, 29 Nov 2008 02:28:06 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mAT2S6jR036290; Sat, 29 Nov 2008 02:28:06 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <200811290228.mAT2S6jR036290@svn.freebsd.org> From: Warner Losh Date: Sat, 29 Nov 2008 02:28:06 +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: r185422 - head/sbin/mount_msdosfs 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: Sat, 29 Nov 2008 02:28:06 -0000 Author: imp Date: Sat Nov 29 02:28:05 2008 New Revision: 185422 URL: http://svn.freebsd.org/changeset/base/185422 Log: Noticed the following error message: mount_msdosfs: /dev/cf0s1: : Operation not supported by device and thought I'd fix it to be: mount_msdosfs: /dev/cf0s1: Operation not supported by device Not sure why errmsg isn't getting filled in, or why this error is even happening at all... (fsck_msdosfs is clean, and I can mount this same CF elsewhere). Modified: head/sbin/mount_msdosfs/mount_msdosfs.c Modified: head/sbin/mount_msdosfs/mount_msdosfs.c ============================================================================== --- head/sbin/mount_msdosfs/mount_msdosfs.c Fri Nov 28 23:44:13 2008 (r185421) +++ head/sbin/mount_msdosfs/mount_msdosfs.c Sat Nov 29 02:28:05 2008 (r185422) @@ -218,8 +218,12 @@ main(int argc, char **argv) build_iovec_argf(&iov, &iovlen, "mask", "%u", mask); build_iovec_argf(&iov, &iovlen, "dirmask", "%u", dirmask); - if (nmount(iov, iovlen, mntflags) < 0) - err(1, "%s: %s", dev, errmsg); + if (nmount(iov, iovlen, mntflags) < 0) { + if (errmsg[0]) + err(1, "%s: %s", dev, errmsg); + else + err(1, "%s", dev); + } exit (0); }