History log of /freebsd-10.0-release/sbin/mount_udf/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
259065 07-Dec-2013 gjb

- Copy stable/10 (r259064) to releng/10.0 as part of the
10.0-RELEASE cycle.
- Update __FreeBSD_version [1]
- Set branch name to -RC1

[1] 10.0-CURRENT __FreeBSD_version value ended at '55', so
start releng/10.0 at '100' so the branch is started with
a value ending in zero.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


247861 06-Mar-2013 jkim

Use build_iovec() to make it less cryptic. This also fixes warnings.


247856 05-Mar-2013 jkim

GC unused variables. Prefer NULL over 0 for pointers.


230226 16-Jan-2012 jh

Change checkpath() to not exit on error. This is a prerequisite for
fixing the mount(8) "failok" option.

PR: 163668
Reviewed by: Garrett Cooper, delphij (previous version)


227081 04-Nov-2011 ed

Add missing static keywords for global variables to tools in sbin/.

These tools declare global variables without using the static keyword,
even though their use is limited to a single C-file, or without placing
an extern declaration of them in the proper header file.


160447 17-Jul-2006 stefanf

style.Makefile(5): Remove -Wall from CFLAGS.


147242 10-Jun-2005 delphij

Use MOPT_END in favor of MOPT_NULL, which better describes the purporse
of the macro.


146853 01-Jun-2005 delphij

Add a handy macro to represent null mount option, MOPT_NULL, and make
use of the macro in sbin/mount*'s, by replacing:

mopts[] = {
MOPT_STDOPTS,
{ NULL }
}

With:
mopts[] = {
MOPT_STDOPTS,
MOPT_NULL
}

This change will help to reduce the situation that we don't explicitly
initialize "struct mntopt"'s. It should not contribute to any
functional/logical changes as far as I can tell.


141611 10-Feb-2005 ru

Sync program's usage() with manpage's SYNOPSIS.


139112 21-Dec-2004 ru

NOSHARED -> NO_SHARED


128073 09-Apr-2004 markm

Remove advertising clause from University of California Regent's license,
per letter dated July 22, 1999.

Approved by: core, imp


126178 23-Feb-2004 johan

style.Makefile(5):
Use WARNS?= instead of WARNS=.


123293 08-Dec-2003 fjoe

Make msdosfs long filenames matching case insensitive again.

PR: 59765
Submitted by: Ryuichiro Imura <imura@ryu16.org>


122977 24-Nov-2003 kan

Correct iov_len values passed to nmount(2) syscall. More accurate
parameter checking introduced in vfs_mount.c r1.113 rejects them
otherwise.

Submitted by: R. Imura <imura at ryu16 dot org>
Approved by: re (scottl,rwatson)


122097 05-Nov-2003 scottl

Add support for multibyte character conversions.

Submitted by: imura@ryu16.org


107768 12-Dec-2002 trhodes

mount_udf(8) is currently not in 4.X, so obviously it did not first appear
in 4.6

PR: 46117
Submitted by: Ryuichiro Imura <imura@ryu16.org>
Approved by: re (bmah)


102231 21-Aug-2002 trhodes

s/filesystem/file system/g as discussed on -developers


101829 13-Aug-2002 mux

Don't depend on namespace pollution in sys/mount.h and
include sys/uio.h.


101270 03-Aug-2002 mux

Now that the kernel is able to load modules itself,
remove all the code which was trying to do so.
This code was nasty in several ways, it was hiding
the kernel bug where the kernel was unable to properly
load a module, and it was quitting if it wasn't able
to load the module. The consequence is that an ABI
breakage of the vfsconf API would have broken *every*
mount utility.


98265 15-Jun-2002 mux

Convert UDF to nmount.

Reviewed by: scottl


97587 30-May-2002 ru

mdoc(7) police: nits.


94796 15-Apr-2002 asmodai

Sync with UDF p4 tree: Properly initialize part of the mntopts.
Move to WARNS=1.


94663 14-Apr-2002 scottl

Actually add the UDF files!