From nobuhiro.yasutomi@nifty.ne.jp  Mon Mar 28 07:04:21 2005
Return-Path: <nobuhiro.yasutomi@nifty.ne.jp>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 24ECB16A4CE
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 28 Mar 2005 07:04:21 +0000 (GMT)
Received: from mail530.nifty.com (mail530.nifty.com [202.248.37.252])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 4760743D2D
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 28 Mar 2005 07:04:20 +0000 (GMT)
	(envelope-from nobuhiro.yasutomi@nifty.ne.jp)
Received: from [192.168.0.20] (p299b23.tkyoac00.ap.so-net.ne.jp [218.41.155.35]) (authenticated)
	by mail530.nifty.com with ESMTP id j2S743Rc008692
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 28 Mar 2005 16:04:04 +0900
Message-Id: <4247AC65.7020400@nifty.ne.jp>
Date: Mon, 28 Mar 2005 16:04:05 +0900
From: Nobuhiro Yasutomi <nobuhiro.yasutomi@nifty.ne.jp>
To: FreeBSD-gnats-submit@freebsd.org
Subject: "umount -a -t msdos" not work

>Number:         79296
>Category:       bin
>Synopsis:       "umount -a -t msdos" not work
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    rodrigc
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Mar 28 07:10:02 GMT 2005
>Closed-Date:    Tue Feb 06 08:29:30 GMT 2007
>Last-Modified:  Thu Feb  8 05:10:16 GMT 2007
>Originator:     Nobuhiro Yasutomi
>Release:        FreeBSD 5.4-BETA1 i386
>Organization:
Personal
>Environment:
System: FreeBSD alex.mysite.jp 5.4-BETA1 FreeBSD 5.4-BETA1 #0: Fri Mar
18 09:28:57 UTC 2005
root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386


>Description:
        `mount' include compatiblity glue `msdos' to `msdosfs'  and `umount'
        is not. In `/etc/fstab' write fs-type to `msdos', "mount -t
msdos -a"
        to working, but "umount -t msdos -a" not work.

>How-To-Repeat:
        see Description.

>Fix:
        Add same glue in `umount' or remove glue `mount'?

--- sbin/mount/mount.c.orig	Tue Apr 27 00:13:45 2004
+++ sbin/mount/mount.c	Mon Mar 28 15:26:30 2005
@@ -435,8 +435,10 @@
 		optbuf = catopt(optbuf, "update");

 	/* Compatibility glue. */
-	if (strcmp(vfstype, "msdos") == 0)
+	if (strcmp(vfstype, "msdos") == 0) {
+		warnx("use \"msdosfs\" in vfstype");
 		vfstype = "msdosfs";
+	}

 	argc = 0;
 	argv[argc++] = vfstype;

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->rodrigc 
Responsible-Changed-By: rodrigc 
Responsible-Changed-When: Sat Jan 20 21:39:13 UTC 2007 
Responsible-Changed-Why:  
Grabbing 

http://www.freebsd.org/cgi/query-pr.cgi?pr=79296 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: bin/79296: commit references a PR
Date: Tue,  6 Feb 2007 05:57:48 +0000 (UTC)

 rodrigc     2007-02-06 05:57:40 UTC
 
   FreeBSD src repository
 
   Modified files:
     sbin/mount           mount.c 
   Log:
   Print warning that "-t msdos" is deprecated and being converted to
   "-t msdosfs".  The conversion has been happening since 1.43, but
   no equivalent conversion happens in "umount -t", which led to some
   confusion with some users.
   
   PR:             79296
   Submitted by:   Nobuhiro Yasutomi <nobuhiro yasutomi nifty ne jp>
   
   Revision  Changes    Path
   1.94      +4 -1      src/sbin/mount/mount.c
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: bin/79296: commit references a PR
Date: Tue,  6 Feb 2007 06:06:45 +0000 (UTC)

 rodrigc     2007-02-06 06:06:28 UTC
 
   FreeBSD src repository
 
   Modified files:        (Branch: RELENG_6)
     sbin/mount           mount.c 
   Log:
   MFC 1.94
   
   Warn that "-t msdos" will be converted to "-t msdosfs".
   
   PR:             79296
   Submitted by:   Nobuhiro Yasutomi <nobuhiro yasutomi nifty ne jp>
   
   Revision  Changes    Path
   1.69.2.7  +4 -1      src/sbin/mount/mount.c
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: rodrigc 
State-Changed-When: Tue Feb 6 08:29:11 UTC 2007 
State-Changed-Why:  
Committed to HEAD and RELENG_6. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=79296 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: bin/79296: commit references a PR
Date: Thu,  8 Feb 2007 05:05:06 +0000 (UTC)

 rodrigc     2007-02-08 05:04:18 UTC
 
   FreeBSD src repository
 
   Modified files:
     release/doc/de_DE.ISO8859-1/installation/common install.sgml 
     release/doc/en_US.ISO8859-1/installation/common install.sgml 
     release/doc/fr_FR.ISO8859-1/installation/common install.sgml 
     release/doc/ru_RU.KOI8-R/installation/common install.sgml 
     release/doc/zh_CN.GB2312/installation/common install.sgml 
   Log:
   Replace "mount -t msdos" with "mount -t msdosfs".
   
   PR:             79296
   Reviewed by:    remko
   
   Revision  Changes    Path
   1.12      +1 -1      src/release/doc/de_DE.ISO8859-1/installation/common/install.sgml
   1.34      +1 -1      src/release/doc/en_US.ISO8859-1/installation/common/install.sgml
   1.9       +1 -1      src/release/doc/fr_FR.ISO8859-1/installation/common/install.sgml
   1.9       +1 -1      src/release/doc/ru_RU.KOI8-R/installation/common/install.sgml
   1.6       +1 -1      src/release/doc/zh_CN.GB2312/installation/common/install.sgml
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
