aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Move flush_outbuf to the file in which it is used, and by doing so fix aMatt Kraai2000-11-084-30/+28
| | | | nasty error dealing with two different variables with the same name.
* Fix some bugs reported by Jim Gleason <jimg@lineo.com> and others IMatt Kraai2000-11-082-48/+30
| | | | introduced.
* Cleanup of duplicated symbols -- found by compiling withEric Andersen2000-11-078-104/+74
| | | | LDFLAGS += -Wl,-warn-common
* Removed REG_NEWLINE from regcomp to fix the same bug found in grep where itMark Whitley2000-11-032-2/+2
| | | | | would not match blank lines (bug #1064). Followed Matt Kraii's suit on his 1.42 revision of grep. Tested it, works.
* Now, what was that logic block doing up there?Mark Whitley2000-11-032-12/+12
|
* Re-worked the support for s///p, fixed a backref limit buglet, and cleaned upMark Whitley2000-11-034-148/+172
| | | | | | a few other ugly places (do_subst_command got a much-needed overhaul). Also took out BB_FEATURE_SED_PATTERN_SPACE from Config.h[.Hurd] as the 'p' is now a standard feature (adds almost no bloat).
* Warning cleanup from Gennady FeldmanEric Andersen2000-11-022-18/+20
| | | | -Erik
* Fix uname problem that was breaking poweroff.Eric Andersen2000-10-306-65/+19
|
* This was redundantEric Andersen2000-10-292-2/+0
|
* Make fbset compile with the readmode feature by pulling defs from fb.h.Matt Kraai2000-10-282-0/+18
|
* Make features independent.Matt Kraai2000-10-282-10/+42
|
* We also need to declare info if the USERNAMES feature is enabled.Matt Kraai2000-10-282-4/+8
|
* Add in -lgcc to add needed symbold when linking vs uclibc.Eric Andersen2000-10-271-2/+2
|
* Oops. I never committed this. Update version to 0.48pre...Eric Andersen2000-10-274-3/+9
|
* Silence a warning,Eric Andersen2000-10-262-2/+2
|
* This was broken when applets moved to applets.h. Fix it.Eric Andersen2000-10-262-2/+2
|
* Fixed error handling and TRUE/FALSE usage.Matt Kraai2000-10-252-6/+4
|
* Restore --help handling I mistakenly removed.Matt Kraai2000-10-252-2/+8
|
* Avoid reinventing the wheel (and thus save some space).Matt Kraai2000-10-252-52/+26
|
* Added a new perrorMsg function, cleanup up error handling, fixed TRUE/FALSEMatt Kraai2000-10-255-90/+66
| | | | uses, and other minor fixes.
* Cleaned up error handling, TRUE/FALSE usage, and other minor issues.Matt Kraai2000-10-252-46/+26
|
* Clean up error handling and uses of TRUE/FALSE.Matt Kraai2000-10-252-28/+16
|
* Cleaned up error handling and uses of TRUE/FALSE.Matt Kraai2000-10-252-6/+4
|
* Cleaned up error message handling.Matt Kraai2000-10-252-32/+32
|
* Added a fatalPerror function to simplify error handling.Matt Kraai2000-10-255-8/+23
|
* Fix for bug #1068 from Kent RobottiGlenn L McGrath2000-10-252-4/+8
| | | | Call perror and exit instead of fatalError
* Applied patch from Gaute B Strokkenes <gs234@cam.ac.uk> to use a binary searchMark Whitley2000-10-254-732/+804
| | | | | to locate applets, rather than a linear search. Also, broke out the listing of applets into it's own file: applets.h.
* Fix error messages.Matt Kraai2000-10-238-46/+46
|
* Fix error message.Matt Kraai2000-10-232-6/+6
|
* Put getopt_usage where it belongs and added *_usage entries in busybox.[ch]Mark Whitley2000-10-198-36/+44
|
* Piss people off by removing [+-][0-9]+ options from tail.Matt Kraai2000-10-194-48/+6
|
* Remove broken error test found by Bryan Rittmeyer <bryan@ixiacom.com>.Matt Kraai2000-10-161-5/+0
|
* Fix handling of ^$ by removing the newline from input lines and by notMatt Kraai2000-10-132-4/+8
| | | | compiling with REG_NEWLINE.
* Consolidate stat(2) and lstat(2) calls and error handling.Matt Kraai2000-10-132-68/+50
|
* Exit with failure status if we are unable to list any files orMatt Kraai2000-10-132-2/+16
| | | | directories. Patch thanks to Kent Robotti <robotti@metconnect.com>.
* Apply a patch from Matt Kraai to fix buffer overrun and convert toEric Andersen2000-10-122-38/+30
| | | | | using synamically allocated storage. -Erik
* Apply patch from "Orion Poplawski" <OPoplawski@cqg.com> to makeEric Andersen2000-10-126-10/+22
| | | | | hostname do "--file" -Erik
* Added cmp and readlink applets from Matt Kraai.Mark Whitley2000-10-0911-2/+286
|
* Patch from Matt Kraai so wc will return a proper error codeEric Andersen2000-10-093-9/+13
| | | | | | when failing to open a file, and will not use file when it didn't open the file. -Erik
* Fix a thinko. Patch from Justus Pendleton <justus@acm.org>Eric Andersen2000-10-092-2/+2
|
* Apply a patch from Matt Kraai:Eric Andersen2000-10-092-2/+22
| | | | | | | "The -L option to ls doesn't behave correctly for files listed explicitly on the command line, only those in directories that are listed. The appended patch fixes this problem. Would someone please commit it?" -Erik
* Patch from Matt Kraai: "When it encounters a problem creating a link, lnEric Andersen2000-10-042-4/+6
| | | | | shouldn't give up entirely but instead continue processing the rest of its arguments. The attached patch does this."
* Rewrite to use getopt and return instead of exit, a seperate function ↵Glenn L McGrath2000-10-042-166/+138
| | | | (fs_link) does the actual work.
* Add a spiffy progress meter.Eric Andersen2000-10-033-42/+463
| | | | -Erik
* Try to guess an output filenameEric Andersen2000-10-022-4/+20
|
* Apply patch from Giulio Orsero <giulioo@pobox.com> to ensureEric Andersen2000-10-011-1/+1
| | | | | get_last_path_component is defined under all configurations, -Erik
* General cleanup of comments, defines, includes, and global variables, ↵Glenn L McGrath2000-09-292-2902/+1264
| | | | | | | | removed those that arent needed, grouped those remaining at the top. Re-ordered functions to the order they are called. Removed static crc table, it now generates the table once for itself. Results in source reduced by 40%, so it should be a lot easier to work on in the future, binary size only reduced by under 2KB though.
* Fixes to allow compilation on systems with glibc 2.1.92Pavel Roskin2000-09-284-4/+24
|
* + shortened main() a little, and a few aesthetic cleanups here & there.John Beppu2000-09-282-42/+38
|
* Rewrote head to perservere when it can't open a file, and share codeMatt Kraai2000-09-275-103/+105
| | | | with cat.