summaryrefslogtreecommitdiff
path: root/libbb/find_root_device.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Tito, farmatito at tiscali dot it writes:Eric Andersen2004-08-031-2/+6
| | | | | | | | | | | Hi to all, This patch is useful for: 1) remove an unused var from extern char *find_real_root_device_name(const char* name) changing it to extern char *find_real_root_device_name(void). 2) fixes include/libbb.h, coreutils/df.c, util-linux/mount.c and util-linux/umount.c accordingly. 3) fixes a bug, really a false positive, in find_real_root_device_name() that happens if in the /dev directory exists a link named root (/dev/root) that should be skipped but is not. This affects applets like df that display wrong results
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-5/+5
|
* Fix a bug where mount could check the wrong device. st_rdev is the correctEric Andersen2004-01-131-2/+5
| | | | | | | device ID iff the named file is a character or block special device. Otherwise it is meaningless junk, in which case st_dev should be used. This was done incorrectly, which could cause mount to display bogus mount info. -Erik
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-141-3/+1
|
* Don't shadow a paramaterEric Andersen2003-06-201-3/+3
|
* Vodz, last_patch_88Glenn L McGrath2003-06-101-4/+7
|
* Vodz, last_patch_86Glenn L McGrath2003-05-261-5/+2
|
* Major coreutils update.Manuel Novoa III2003-03-191-3/+3
|
* Major rework of the directory structure and the entire build system.Eric Andersen2001-10-241-3/+3
| | | | -Erik
* Vladimir's last_patch13, containing several bugfixes.Eric Andersen2001-06-011-37/+30
|
* Make more robust (patch by Larry Doolittle).Matt Kraai2001-05-231-5/+11
|
* Patch from Vladimir:Eric Andersen2001-05-151-13/+13
| | | | | | | 1) fixed a bug that could crash df, mount, and umount applets if the root device name was longer then the word "root" (/dev/loop1 vs /dev/root) - 2) severl functions needed static declaration in the umount applet 3) update declaration for function in last_char_is() in libbb
* Convert utility.c into libbb.a. It is now a whole pile of .cEric Andersen2001-03-161-0/+85
files. Clean up the resulting damage and fix up the makefile. -Erik