aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Rewrite argv munger.Matt Kraai2000-12-152-44/+22
|
* Add in mkCDrec - make CD-ROM recovery project.Eric Andersen2000-12-141-36/+35
|
* Simplify error handling.Matt Kraai2000-12-142-16/+8
|
* Shutdown sending on the socket when stdin closes.Matt Kraai2000-12-142-0/+4
|
* Added some necessary brackets, removed debug noise.Mark Whitley2000-12-132-8/+6
|
* Ran aspell.Matt Kraai2000-12-131-2/+2
|
* Formatting fix0_48Eric Andersen2000-12-131-3/+2
|
* Website update for the releaseEric Andersen2000-12-132-42/+62
|
* Add a few folks to AuthorsEric Andersen2000-12-131-0/+6
|
* A few more updatesEric Andersen2000-12-133-21/+65
|
* Document gzip -dEric Andersen2000-12-134-1/+5
|
* Add GNU compatibile gzip -dEric Andersen2000-12-132-0/+4
|
* Update the version number to 0.48 (no longer pre).Eric Andersen2000-12-136-29/+36
|
* A couple of updates to fix some minor cross compiling issuesEric Andersen2000-12-134-8/+6
|
* Patch from Matt Kraai:Eric Andersen2000-12-132-50/+52
| | | | | | | The following patch makes the -X option to tar behave like GNU, which reads one file per line. It also prevents the last file from being appended to the list twice (though that has no noticeable impact).
* Fix from Matt Kraai -- a better way to NULL terminate strings for theEric Andersen2000-12-1313-50/+26
| | | | | my_* passwd and group routines. I should have thought of doing it this way...
* Fix from Gennady Feldman for error msgEric Andersen2000-12-122-4/+8
|
* Mem leak fix from Matt KraaiEric Andersen2000-12-123-15/+3
|
* Patch from Matt Kraai to fix 'dirname /'Eric Andersen2000-12-122-10/+12
|
* Fix so cross compiling works again...Eric Andersen2000-12-121-5/+6
|
* Cleanup for proper compilation with uClibc.Eric Andersen2000-12-122-2/+4
|
* Mount error return code fix from Kent Robotti -- we must reset the errorEric Andersen2000-12-122-12/+6
| | | | code when looping...
* du.c error msg cleanup from Kent RobottiEric Andersen2000-12-122-4/+4
|
* Fix from Matt Kraai so basename / will work as expected.Eric Andersen2000-12-121-3/+5
|
* Oops. Unmatched #ifEric Andersen2000-12-121-0/+2
|
* Some compile fixes found by Larry DoolittleEric Andersen2000-12-124-5/+7
|
* Script updates for better portabilityEric Andersen2000-12-124-12/+30
|
* Matt Kraai pointed out that we can rely on strncpy to NULLEric Andersen2000-12-111-1/+1
| | | | terminate shorter cases, so we can save a few cycles...
* Patch from larry doolittle to make sure we don't reallocEric Andersen2000-12-112-0/+2
| | | | a pointer that was not yet malloced mem.
* Keep unknown priorities from segfaulting.Matt Kraai2000-12-112-2/+2
|
* Fix spelling error s/defaut/default/gEric Andersen2000-12-115-6/+6
|
* Fix non-NULL terminated strings.Eric Andersen2000-12-111-0/+1
|
* Fix a thinko -- when REMOTE_LOG support is compiled in,Eric Andersen2000-12-112-0/+12
| | | | | but the user has not specified remote logging, then be sure to log locally... duh.
* Patch from Matt Kraai to fox sh.c escape problem such thatEric Andersen2000-12-113-3/+9
| | | | | running things like 'echo "\n\tHi\n\t\!"' and 'echo -e "\n\tHi\n\t\!"' behave as under bash.
* Test suite update from Larry Doolittle to disable some problematicEric Andersen2000-12-112-3/+10
| | | | ambiguous cases. Everything now passes the test suite...
* Patch from kent robotti to fix a buglet whereEric Andersen2000-12-112-6/+4
| | | | | | | # du doesn't_exist du: doesn't_exist: No such file or directory 0 doesn't_exist which was on course wrong. I simplified it a bit...
* Fix the option parsing to use getopt, which seems to fix bug #1050Eric Andersen2000-12-112-62/+26
|
* Patch from Larry Doolittle, fix up logging across multilple lines, hopefullyEric Andersen2000-12-112-60/+50
| | | | fixing bug #1061.
* Reverse logic so when network logging, it by default does not log locally.Eric Andersen2000-12-116-13/+13
|
* Add a linker warning for symbol conflicts.Eric Andersen2000-12-111-5/+4
|
* Some .deb updateEric Andersen2000-12-103-3/+19
|
* Support for tar -z option for uncompressing onlyGlenn L McGrath2000-12-106-48/+163
|
* Introduce new function gunzip_init()Glenn L McGrath2000-12-102-64/+70
| | | | gunzip_init() will make it easier to use gunzip from other bb functions.
* NFS_PORT and NFS_FHSIZE are not defined in the kernel headers that come with ↵Glenn L McGrath2000-12-092-0/+12
| | | | | | libc6-2.2-5 This just defines that if they arent found in the kernel header
* Fix problem where 'du file_that_exists' doesn't work.Eric Andersen2000-12-092-4/+4
|
* More wget cleanups I've been working on...Eric Andersen2000-12-092-60/+106
|
* Some little cleanups from Larry DoolittleEric Andersen2000-12-094-4/+4
|
* Patch from Matt Kraai to implement uniq -[cdu]Eric Andersen2000-12-096-15/+103
|
* add quiet mode support.Glenn L McGrath2000-12-092-10/+20
| | | | | If wget compiled without statusbar then -q option is accepted but has no effect. If wget compiled with statusbar -q turns it off.
* Forget to set final argv entry to NULL, breaking sh.c amoungEric Andersen2000-12-092-0/+2
| | | | other things...