about summary refs log tree commit diff
path: root/src/linux/mntent.c
Commit message (Collapse)AuthorAgeFilesLines
* cleanup src/linux and src/misc trees, etc.Rich Felker2012-09-071-68/+0
| | | | | | | | | | | | previously, it was pretty much random which one of these trees a given function appeared in. they have now been organized into: src/linux: non-POSIX linux syscalls (possibly shard with other nixen) src/legacy: various obsolete/legacy functions, mostly wrappers src/misc: still mostly uncategorized; some misc POSIX, some nonstd src/crypt: crypt hash functions further cleanup will be done later.
* make getmntent_r discard long lines when it returns error, not seek backRich Felker2011-09-281-2/+1
| | | | | seeking back can be performed by the caller, but if the caller doesn't expect it, it will result in an infinite loop of failures.
* improve error handling in mntent stuff...Rich Felker2011-09-271-2/+9
| | | | not sure if this is correct/ideal. it needs further attention.
* fix completely bogus loop condition in getmntent_rRich Felker2011-04-061-1/+1
| | | | | somehow this worked on my simple fstab, but horribly broke in general, leading to use of uninitialized offset array and crashes.
* add getmntent_r interface (all of mntent is nonstandard anyway)Rich Felker2011-04-051-12/+17
|
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+57