summaryrefslogtreecommitdiffstats
path: root/sbin/mount_udf/mount_udf.c
Commit message (Collapse)AuthorAgeFilesLines
* MFC: r261496brueffer2014-02-111-3/+3
| | | | | | | | Unbreak mount_udf by passing the correct iovec length into nmount(). This has been broken since r247861. PR: bin/186193 Submitted by: Arnot Belohlavek
* Use build_iovec() to make it less cryptic. This also fixes warnings.jkim2013-03-061-31/+13
|
* GC unused variables. Prefer NULL over 0 for pointers.jkim2013-03-051-3/+3
|
* Change checkpath() to not exit on error. This is a prerequisite forjh2012-01-161-1/+2
| | | | | | | fixing the mount(8) "failok" option. PR: 163668 Reviewed by: Garrett Cooper, delphij (previous version)
* Add missing static keywords for global variables to tools in sbin/.ed2011-11-041-1/+1
| | | | | | 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.
* Use MOPT_END in favor of MOPT_NULL, which better describes the purporsedelphij2005-06-101-1/+1
| | | | of the macro.
* Add a handy macro to represent null mount option, MOPT_NULL, and makedelphij2005-06-011-1/+1
| | | | | | | | | | | | | | | | | | | 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.
* Remove advertising clause from University of California Regent's license,markm2004-04-091-4/+0
| | | | | | per letter dated July 22, 1999. Approved by: core, imp
* Make msdosfs long filenames matching case insensitive again.fjoe2003-12-081-6/+1
| | | | | PR: 59765 Submitted by: Ryuichiro Imura <imura@ryu16.org>
* Correct iov_len values passed to nmount(2) syscall. More accuratekan2003-11-241-2/+2
| | | | | | | | 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)
* Add support for multibyte character conversions.scottl2003-11-051-18/+75
| | | | Submitted by: imura@ryu16.org
* s/filesystem/file system/g as discussed on -developerstrhodes2002-08-211-1/+1
|
* Don't depend on namespace pollution in sys/mount.h andmux2002-08-131-0/+1
| | | | include sys/uio.h.
* Now that the kernel is able to load modules itself,mux2002-08-031-13/+3
| | | | | | | | | | 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.
* Convert UDF to nmount.mux2002-06-151-12/+15
| | | | Reviewed by: scottl
* Sync with UDF p4 tree: Properly initialize part of the mntopts.asmodai2002-04-151-1/+1
| | | | Move to WARNS=1.
* Actually add the UDF files!scottl2002-04-141-0/+142
OpenPOWER on IntegriCloud