summaryrefslogtreecommitdiff
path: root/chmod_chown_chgrp.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update how we detect if libc5 is in use.Eric Andersen2001-04-091-0/+1
| | | | -Erik
* Patch from Vladimir N. Oleynik to save 128 bytes by moving errorEric Andersen2001-02-271-9/+0
| | | | checking for some my_* functions to utility.c
* It turns out that DODMALLOC was broken when I reorganized busybox.hEric Andersen2001-02-201-4/+4
| | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik
* This patch, put together by Manuel Novoa III, is a merge of workEric Andersen2001-02-141-5/+1
| | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed.
* Removed trailing \n from error_msg{,_and_die} messages.Matt Kraai2001-01-311-3/+3
|
* Patch from Vladimir N. Oleynik to simplify how it decides whichEric Andersen2001-01-311-3/+3
| | | | app was invoked. This removes several strcmp calls.
* Fix up copyright msgs. Bump version to 0.49 in preparation for0_49Eric Andersen2001-01-271-1/+1
| | | | | a release. Update the website with release details. -Erik
* Fix header file usage -- there were many unnecessary header files included inEric Andersen2001-01-271-0/+3
| | | | | | | busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik
* Add in a patch to make busybox use the normal pwd.h and grp.hEric Andersen2001-01-271-2/+0
| | | | | | functions. Add in simple implementations of these functions, which can, optionally, be used instead of the system versions. -Erik
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-071-6/+6
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Stop using TRUE and FALSE for exit status.Matt Kraai2000-12-011-2/+2
|
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-251-1/+1
| | | | -Erik
* Fix an option parsing bug where things likeEric Andersen2000-08-221-6/+9
| | | | | | chmod -r /tmp/file wholdn't work (since it thought -r was an option). Doh! -Erik
* Extract usage information into a separate file.Matt Kraai2000-07-161-23/+0
|
* uid and gid were unsigned, but were compared vs signed values (-1)Eric Andersen2000-07-141-2/+2
| | | | -Erik
* Use errorMsg rather than fprintf.Matt Kraai2000-07-141-3/+3
|
* Always report the applet name when doing error reporting.Matt Kraai2000-07-121-5/+4
|
* Use global applet_name instead of local versions.Matt Kraai2000-07-121-10/+8
|
* Updates to a number of apps to remove warnings/compile errors under libc5.Eric Andersen2000-06-191-2/+2
| | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik
* Add new apps md5sum uudecode uuencode, fix some minor formatting things.Eric Andersen2000-06-131-1/+2
| | | | -Erik
* Fixed segfaults for "chown -R" and "chgrp -R". Also added a message for "tooMark Whitley2000-06-061-9/+13
| | | | few arguments".
* Fixed segfault when you type "chmod -R". "chown -R" and "chgrp -R" are stillMark Whitley2000-06-061-1/+1
| | | | having problems...
* Some more portability updatesErik Andersen2000-05-171-2/+2
| | | | -Erik
* More Doc updates. cmdedit and more termio fixes.Erik Andersen2000-04-211-12/+18
|
* Fix symlink following bug in chmod -R and friends. Allow SYSV styleErik Andersen2000-04-181-2/+4
| | | | | | | 'chown foo:bar' in addition to 'chown foo.bar', and fix a bug in the busybox globbing routine such that 'find /dir -name [i]' no longer segfaults. -Erik
* Upates to include copyright 2000 to everythingErik Andersen2000-04-131-1/+1
| | | | -Erik
* Yet another installment in the ongoing tar sagaErik Andersen2000-03-281-4/+3
| | | | -Erik
* Wrote killall.Erik Andersen2000-03-071-4/+2
| | | | | | Adjusted mount, ps, utility.c, etc to handle my nifty new kernel patches the allow busybox to run perfectly without /proc. -Erik
* A few updates (including the cp fix the Craig has been looking for)Erik Andersen2000-03-041-0/+8
| | | | -Erik
* UpdatesErik Andersen2000-02-111-16/+9
| | | | -Erik
* Some formatting updates (ran the code through indent)Erik Andersen2000-02-081-110/+128
| | | | -Erik
* A few minor updates. ;-)Erik Andersen2000-02-071-9/+20
| | | | | | Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik
* Clear up some ambiguity with old style assignments.Erik Andersen2000-01-291-4/+4
| | | | -Erik
* put #if's around the lchown, becauseJohn Beppu2000-01-241-1/+7
| | | | older glibc versions don't have it.
* Went ahead and fixed bug #301 (chown not working on symlinks)John Beppu2000-01-231-1/+1
| | | | | | | in fileAction(), I changed the chown() to lchown(); Hopefully, that doesn't break anything. (I don't think it does). nested ?:?:?: madness in chmod_chown_chgrp.c
* Latest and greatest0_36Eric Andersen1999-11-181-8/+8
|
* Updates to usage, and made tar work.Eric Andersen1999-11-101-12/+12
| | | | -Erik
* Removed cruftEric Andersen1999-10-221-1/+1
|
* Make mkdir -m workEric Andersen1999-10-221-1/+1
|
* Fixed up copyright notices and suchEric Andersen1999-10-201-2/+4
|
* Made ps work. Fixed some stuff.Eric Andersen1999-10-201-50/+0
|
* Fixed chmod and friends.Eric Andersen1999-10-201-188/+77
|
* Added sfdisk. Ststic-ified a bunch of stuff.Eric Andersen1999-10-191-0/+168
|
* More stuffEric Andersen1999-10-191-1/+1
|
* More fixesEric Andersen1999-10-181-1/+1
|
* Some fixes and suchEric Andersen1999-10-171-13/+10
|
* More stuffEric Andersen1999-10-131-112/+8
|
* Combined stuffEric Andersen1999-10-131-0/+253