aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* - end may be used uninitialized.Bernhard Reutner-Fischer2006-11-171-1/+2
| | | | - TODO: should eventually use skip_whitespace there
* httpd: reduce ifdef forest. comment out redundant PATH settingDenis Vlasenko2006-11-162-87/+77
|
* httpd:Denis Vlasenko2006-11-161-22/+17
| | | | | | | | fix union aliasing bug symptom: wget of non-existent file gets redirected to /text/html/something on second and subsequend wget attempts fix double-free bug symptom: glibc caught double-free (we didn't NULL config->xxx ptrs after free)
* httpd: add -i (inetd) and -f (foreground) otions.Denis Vlasenko2006-11-163-90/+56
| | | | | -i makes possible to run httpd in both inetd and standalone mode without recompile (or need to have two different binaries)
* httpd: stop being silly with setenvDenis Vlasenko2006-11-161-61/+28
|
* svlogd: new applet. +9k. Still too big, but it was 12k yesterday.Denis Vlasenko2006-11-1611-18/+2342
|
* remove duplicate flag declsMike Frysinger2006-11-151-3/+3
|
* umount: umount -a shouldn't stop on first failureDenis Vlasenko2006-11-121-5/+6
|
* httpd: cosmetic fixes (the bug which was being hunted downDenis Vlasenko2006-11-101-51/+45
| | | | turned out to be nonexistent :)
* wget: fix error message.Denis Vlasenko2006-11-104-8/+8
| | | | | | | | | | | | | | | Bad: wget http://127.0.0.1:81/fgdg/Makefile Connecting to 127.0.0.1[127.0.0.1]:81 : HTTP/1.0 404 Not Foundror 404 Not Found Good: wget http://127.0.0.1:81/fgdg/Makefile Connecting to 127.0.0.1[127.0.0.1]:81 get: server returned error: HTTP/1.0 404 Not Found nslookup: fix my mistake applets: make Bernhard Fischer <rep.nop@aon.at> happy :)
* add && !defined(__UCLIBC__) to static link warning checkDenis Vlasenko2006-11-091-1/+2
|
* small ipv6 doc changes; nslookup a tiny bit smallerDenis Vlasenko2006-11-073-4/+6
|
* getty: remove ancient termio support (was using termois anyway)Denis Vlasenko2006-11-071-101/+65
|
* httpd: sendCgi() forked child needs to close openedDenis Vlasenko2006-11-051-28/+20
| | | | server socket and accepted socket
* rename: compare_string_array -> index_in_str_arrayDenis Vlasenko2006-11-0510-44/+50
| | | | | introduce index_in_substr_array and use it in iproute2
* ps: add documentation on POSIX psDenis Vlasenko2006-11-052-1/+176
|
* usage.h: stop using ancient USAGE_xxx (we have USE_xx now)Denis Vlasenko2006-11-051-34/+13
|
* ps: implement POSIX-like options, most notably -oDenis Vlasenko2006-11-052-0/+290
| | | | (activated by CONFIG_DESKTOP)
* smart_ulltoa5: make available in libbbDenis Vlasenko2006-11-053-41/+56
|
* replace /proc scanning code by more versatile one.Denis Vlasenko2006-11-056-168/+325
| | | | | | | Use it where appropriate. Stop scanning /etc/passwd *for every process*!!! (uid->username) top: reduce memory usage - we won't save unneeded fields from /proc info anymore. Downside: ~+250 bytes of code
* top: improve CPU% calculationDenis Vlasenko2006-11-055-59/+56
| | | | style fixes
* Fix kbuild bugs noticed by Bernhard Fischer <rep.nop@aon.at>Denis Vlasenko2006-11-023-15/+14
|
* Unneeded code removed, usused field "unsigned pscpu" removedDenis Vlasenko2006-11-015-14/+14
|
* mostly style fixesDenis Vlasenko2006-11-0112-161/+156
|
* pidof: reduce #ifdef forestDenis Vlasenko2006-11-011-39/+19
|
* PID should be stored in pid_t, not int or long.Denis Vlasenko2006-11-018-69/+76
| | | | | find_pid_by_name() was returning 0 or -1 in last array element, but -1 was never checked. We can use just 0 intead.
* ps: reduce #ifdef forestDenis Vlasenko2006-11-011-25/+13
|
* #if CONFIG_xxx -> #if ENABLE_xxxDenis Vlasenko2006-11-013-20/+12
|
* find: -type T was actually meaning ! -type T!Denis Vlasenko2006-10-311-1/+1
| | | | With this fix, "make mrproper" works correctly
* build system: Makefiles are in source dir, add $(srctree)Denis Vlasenko2006-10-311-3/+3
|
* reads: fix bug 1078Denis Vlasenko2006-10-311-1/+2
|
* add usefun info on SIGINT handling peculiaritiesDenis Vlasenko2006-10-311-0/+627
|
* login: add big fat comment about SIGINT - preventDenis Vlasenko2006-10-311-1/+8
| | | | adding/deleting that code again and again
* login: re-enable Ctrl-^C before execing shell.Denis Vlasenko2006-10-313-79/+67
|
* dd: fix bugs: always assumed conv=sync, died on write errorsDenis Vlasenko2006-10-312-51/+70
| | | | w/o perror and statictics. Several small improvements
* find: implement -prune. "make clean" now works! :)Denis Vlasenko2006-10-311-3/+21
|
* find: fix implicit -print (sometime differed from standard)Denis Vlasenko2006-10-311-3/+11
|
* find: implement ( )Denis Vlasenko2006-10-301-96/+169
|
* "#warning: http://...." doesn't work (gcc thinks that it's a comment!)Denis Vlasenko2006-10-291-1/+1
|
* website: fix linkDenis Vlasenko2006-10-291-1/+1
|
* website: announce 1.2.2.1Denis Vlasenko2006-10-291-0/+7
|
* find: a lot more compliant to 'standard' findDenis Vlasenko2006-10-293-175/+269
| | | | | (we were not respecting order of actions!). Add -o and -a handling.
* find: small improvementDenis Vlasenko2006-10-291-11/+15
|
* find: fix -exec to work like stock find does.Denis Vlasenko2006-10-291-98/+155
|
* ls: silly comment fixesDenis Vlasenko2006-10-281-9/+9
|
* chmod: typo in commentsDenis Vlasenko2006-10-281-8/+8
|
* ls: cleanup part 2. ifdef forest is much less scary now :)Denis Vlasenko2006-10-282-198/+148
|
* ls: cleanup part 1Denis Vlasenko2006-10-288-281/+191
|
* recursive_action: add depth paramDenis Vlasenko2006-10-279-58/+123
| | | | chmod: match coreutils versus following links
* chgrp: just call chown! :)Denis Vlasenko2006-10-273-41/+19
|