aboutsummaryrefslogtreecommitdiff
path: root/libpwdgrp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* egor duda writes:Eric Andersen2004-10-082-7/+10
| | | | | | | | | | | | | | | | | | | | | | | | Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor
* Replace the old and somewhat buggy pwd_grp stuff with the shinyEric Andersen2004-07-1517-1237/+1140
| | | | new stuff mjn3 wrote for uClibc
* Larry Doolittle writes:Eric Andersen2004-04-142-2/+2
| | | | | | | | | | | | | | | | | | | | | | This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-1517-31/+31
|
* rename __getgrent so that it doesn't conflict with some libc'sRuss Dill2003-12-186-7/+7
|
* Patch from Nick Fedchik to fixup paths in busybox/libpwdgrpEric Andersen2003-07-267-7/+7
| | | | which were not properly using the bb_path_*_file strings.
* Remove remaining libc5 support codeEric Andersen2003-07-221-6/+5
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-143-4/+3
|
* oops. make this actually work as intended....Eric Andersen2003-06-261-1/+1
|
* Oops.Eric Andersen2003-06-261-1/+1
|
* Per patch from Nick Fedchik, use SHADOW_FILE, not "/etc/shadow".Eric Andersen2003-06-261-2/+1
| | | | Change fopen to bb_xfopen
* Major coreutils update.Manuel Novoa III2003-03-191-1/+1
|
* Fixup header file orderingEric Andersen2002-12-111-1/+1
|
* Change #include order to fix warningGlenn L McGrath2002-12-081-1/+2
|
* include "busybox" after the libc includes tofix compile errorsGlenn L McGrath2002-12-075-10/+9
|
* Change if(x)free(x); to free(x);Aaron Lehmann2002-11-281-2/+1
|
* Fix stupid typo noticed by John Mullin <john.mullin@homenetcomm.com>Eric Andersen2002-09-161-1/+1
|
* Yipe. uid and gid were reversed.Eric Andersen2002-09-101-1/+1
| | | | -Erik
* Joseph Chiu <josephc@idealab.com> found an off-by-one bug. oops!Eric Andersen2002-08-011-1/+1
|
* Scrub pwd.h and grp.h handling so we don't have to play anyEric Andersen2002-07-0314-14/+14
| | | | | silly games. -Erik
* Cleanup shadow.h stuff so it behaves as intendedEric Andersen2002-07-031-2/+1
| | | | -Erik
* Bigger patch for (partial) tinylogin integrationRobert Griebl2002-06-0417-0/+1300
- Made a new dir loginutils - Moved all applets from pwd_grp to loginutils - Added new applets su.c login.c to loginutils - Made a new dir libpwdgrp - Moved everything from pwd_grp/libpwd_grp there - Added shadow.c to libpwdgrp - Removed dir pwd_grp - Added usage strings for login and su to usage.h - Changed main Makefile to reflect the dir rearrangements [Parts of this patch may overlap with my other two patches]