aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_reiserfs
Commit message (Collapse)AuthorAgeFilesLines
* GC unused mount_* directories. mount_reiserfs was disconnected from buildJung-uk Kim2013-03-053-211/+0
| | | | | | | with r158666. mount_ext2fs and mount_std were disconnected with r164527. Notes: svn path=/head/; revision=247860
* GC unused variables. Prefer NULL over 0 for pointers.Jung-uk Kim2013-03-051-1/+1
| | | | Notes: svn path=/head/; revision=247856
* Change checkpath() to not exit on error. This is a prerequisite forJaakko Heinonen2012-01-161-1/+2
| | | | | | | | | | fixing the mount(8) "failok" option. PR: 163668 Reviewed by: Garrett Cooper, delphij (previous version) Notes: svn path=/head/; revision=230226
* Re-encode files from ISO-8859-1 to UTF-8Ulrich Spörlein2011-05-222-2/+2
| | | | Notes: svn path=/head/; revision=222176
* mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to theUlrich Spörlein2010-05-131-3/+3
| | | | | | | | | | | | | | bottom of the manpages and order them consistently. GNU groff doesn't care about the ordering, and doesn't even mention CAVEATS and SECURITY CONSIDERATIONS as common sections and where to put them. Found by: mdocml lint run Reviewed by: ru Notes: svn path=/head/; revision=208027
* Switch the default WARNS level for sbin/ to 6.Ruslan Ermilov2009-10-191-1/+0
| | | | | | | Submitted by: Ulrich Spörlein Notes: svn path=/head/; revision=198236
* Increase WARNS level to 6.Craig Rodrigues2005-11-131-0/+1
| | | | Notes: svn path=/head/; revision=152358
* Changes to reflect that size_t parameter to build_iovec() is a size_t.Craig Rodrigues2005-11-131-3/+4
| | | | Notes: svn path=/head/; revision=152357
* Tidy up the markup.Ruslan Ermilov2005-06-241-8/+10
| | | | | | | Approved by: re (blanket) Notes: svn path=/head/; revision=147575
* Use MOPT_END in favor of MOPT_NULL, which better describes the purporseXin LI2005-06-101-1/+1
| | | | | | | of the macro. Notes: svn path=/head/; revision=147242
* Add a handy macro to represent null mount option, MOPT_NULL, and makeXin LI2005-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. Notes: svn path=/head/; revision=146853
* Import of mount_reiserfs(8), used to mount a ReiserFS filesystem.Jean-Sébastien Pédron2005-05-243-0/+207
Approved by: mux (mentor) Notes: svn path=/head/; revision=146568