summaryrefslogtreecommitdiffstats
path: root/sbin/mount_ntfs/mount_ntfs.c
Commit message (Collapse)AuthorAgeFilesLines
* Garbage collect NTFS bits which are now completely disconnected fromattilio2013-03-021-280/+0
| | | | | | the tree since few months. This patch is not targeted for MFC.
* Remove trailing whitespace.jh2012-01-281-1/+1
|
* 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)
* mount_ntfs(8): make WARNS=6 cleanuqs2010-02-271-10/+5
| | | | | PR: bin/140000 Approved by: ed (co-mentor)
* 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.
* Sync program's usage() with manpage's SYNOPSIS.ru2005-02-101-2/+2
|
* Include <sys/linker.h> for kldload().stefanf2004-05-241-0/+1
| | | | Approved by: das (mentor)
* Make msdosfs long filenames matching case insensitive again.fjoe2003-12-081-4/+1
| | | | | PR: 59765 Submitted by: Ryuichiro Imura <imura@ryu16.org>
* - Support for multibyte charsets in LIBICONV.fjoe2003-09-261-69/+75
| | | | | | | | - CD9660_ICONV, NTFS_ICONV and MSDOSFS_ICONV kernel options (with corresponding modules). - kiconv(3) for loadable charset conversion tables support. Submitted by: Ryuichiro Imura <imura@ryu16.org>
* Now that the kernel is able to load modules itself,mux2002-08-031-35/+2
| | | | | | | | | | 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.
* o __P removedimp2002-03-211-5/+5
| | | | o main prototype removed
* Stole unicode translation table from mount_msdos. Add kernel codesemenu2001-09-081-2/+77
| | | | | | to support this translation. MFC after: 2 weeks
* Nuke unused variables.dd2001-06-241-1/+1
|
* - sys/n[tw]fs moved to sys/fs/n[tw]fsru2001-05-261-1/+1
| | | | - /usr/include/n[tw]fs moved to /usr/include/fs/n[tw]fs
* mount* fixes from Martin Blapp <mb@imp.ch>:phk1999-10-091-15/+13
| | | | | | | | | | | | | | | | | Made mount more userfriendly (bad slashes are now filtered out) and we remove in mount_nfs trailing slashes if there are any. Fixed mount_xxx binarys to resolve with realpath(3) the mountpoint. Translate the deprecated nfs-syntax with '@' to ':' . The ':' syntax has now precedence, but '@' still works. Notify the user that the '@' syntax should not be used. PR: 7846 PR: 13692 Submitted by: Martin Blapp <mb@imp.ch> Reviewed by: phk
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Primary version.semenu1999-02-031-0/+240
Reviewed by: David O'Brien
OpenPOWER on IntegriCloud