- c90e1be ash: bash compat: "shift $BIGNUM" is equivalent to "shift 1" by Denis Vlasenko · 16 years ago
- 87d5fd9 ash: fix typo by Denis Vlasenko · 16 years ago
- 4e19a9c ash: hopefully close bug 4324. With testcase. by Denis Vlasenko · 16 years ago
- 6a0ad25 ash: dont allow e.g. exec <&10 to attach to stript's fd! by Denis Vlasenko · 16 years ago
- 22f7414 ash: prevent exec NN>&- from closing fd used for script reading by Denis Vlasenko · 16 years ago
- 5a86731 ash: fix a bug where redirection fds were not closed afterwards. by Denis Vlasenko · 16 years ago
- 6fbb43b ash: teach ash about 123>file. It could take only 0..9 before by Denis Vlasenko · 16 years ago
- 6514c5e ash: ducument where "no fds > 9 in redirects" limitation is. no code changes. by Denis Vlasenko · 16 years ago
- 8d924ec ash: ditch dupredirect(), it was only making code harder to read. by Denis Vlasenko · 16 years ago
- 0b76964 ash: explain redirect code a bit by Denis Vlasenko · 16 years ago
- 2dc240c ash: code shrink by Denis Vlasenko · 16 years ago
- a53de7f - fix spelling by Bernhard Reutner-Fischer · 16 years ago
- 3177ba0 ash: small code shrink by Denis Vlasenko · 16 years ago
- e7067e3 ash: fix segfault in "command -v" by Denis Vlasenko · 16 years ago
- a60f84e *: rename ATTRIBUTE_XXX to just XXX. by Denis Vlasenko · 16 years ago
- fa0b56d sendmail: fix wrong vfork usage here too *: shorten error texts by Denis Vlasenko · 16 years ago
- ce13b76 libbb: shrink monotonic_XXX functions, introduce monotonic_ns (unused for now) by Denis Vlasenko · 16 years ago
- 26bc57d ash: improve comments by Denis Vlasenko · 16 years ago
- 448d30e ash: fix very weak $RANDOM generator; and move even more things out of data/bss by Denis Vlasenko · 16 years ago
- 843cbd5 ash: move stuff out of data/bss by Denis Vlasenko · 16 years ago
- cc3f20b fix breakage found by randomconfig by Denis Vlasenko · 16 years ago
- 2f5d0cd ash: trivial code readability fixes by Denis Vlasenko · 16 years ago
- 2b75a94 ash: improve readability of the code. No real code changes. by Denis Vlasenko · 16 years ago
- ef527f5 ash: optional support for $'...\t...\n...' bashism by Denis Vlasenko · 16 years ago
- b07a496 ash: minor shrink (mostly smallints) and variable renaming by Denis Vlasenko · 16 years ago
- 9cd4c76 ash: fix "shift BIGNUM" and "read with no variable name" bugs. by Denis Vlasenko · 16 years ago
- 29038c0 ash: small cosmetic change by Denis Vlasenko · 17 years ago
- 2659c63 ash: fix ${var/s/r} handling, add testcase. by Denis Vlasenko · 17 years ago
- 98a6f56 reword the error msg so people realize that they broke it, they buy it by Mike Frysinger · 17 years ago
- cd2663f ash: optional printf builtin. +25 bytes if off, +35 if on. by Denis Vlasenko · 17 years ago
- 5e25ddb - use STD*_FILENO some more. No object-code changes by Bernhard Reutner-Fischer · 17 years ago
- 636a1f8 - use EXIT_{SUCCESS,FAILURE}. No object-code changes by Bernhard Reutner-Fischer · 17 years ago
- 29eb359 ash: more of -Wall fixes by Denis Vlasenko · 17 years ago
- 6b06cb8 more of -Wall fixes from Cristian Ionescu-Idbohrn. Some are fixing real bugs. by Denis Vlasenko · 17 years ago
- dddfaff ash: make set -o and set +o work as in dash/bash. by Cristian Ionescu-Idbohrn. by Denis Vlasenko · 17 years ago
- c7131c3 ash: fix breakage introduced in rev 21481. by Denis Vlasenko · 17 years ago
- 7465dbc ash: speed up NOFORK code in ash by eliminating second find_applet(). by Denis Vlasenko · 17 years ago
- 9bc80d7 ash: add FEATURE_SH_NOFORK support by Denis Vlasenko · 17 years ago
- 4a9ca13 ash: do not do find_applet() twice in shellexec/tryexec by Denis Vlasenko · 17 years ago
- 468aea2 shells: do not frocibly enable test, echo and kill _applets_, by Denis Vlasenko · 17 years ago
- 80591b0 ash: support for && and || in [[ expr ]]; add testsuite checks by Denis Vlasenko · 17 years ago
- f7d5665 ash: comment about [[; code style fixes. No code changes. by Denis Vlasenko · 17 years ago
- 92e13c2 ash: optional bash-like pattern subst and substring opts by Denis Vlasenko · 17 years ago
- 59f351c ash: add read -u; fix read -t and read -n; add testsuite entries. by Denis Vlasenko · 17 years ago
- 85c2471 *: fix fallout from -Wunused-parameter by Denis Vlasenko · 17 years ago
- 68404f1 *: add -Wunused-parameter; fix resulting breakage by Denis Vlasenko · 17 years ago
- 3f165fa libbb: introduce and use sigprocmask_allsigs and sigaction_set. by Denis Vlasenko · 17 years ago
- 8e2cfec libbb: introduse and use signal_[no_]SA_RESTART_empty_mask and sigaction_set by Denis Vlasenko · 17 years ago
- 574f2f4 *: add optimization barrier to all "G trick" locations by Denis Vlasenko · 17 years ago
- 6aa74fc ash: s/ckzmalloc/ckzalloc/ by Denis Vlasenko · 17 years ago
- 838ffd5 ash: sprinkle a bit more of zeroed allocations. by Denis Vlasenko · 17 years ago
- e376d45 libbb: introduce and use nonblock_safe_read(). Yay! by Denis Vlasenko · 17 years ago
- 597906c ash: introduce and use stzalloc and ckzalloc. by Denis Vlasenko · 17 years ago
- c12d51e ash: fix fallout from "A=1 B=$A; echo $B" code. by Denis Vlasenko · 17 years ago
- 5624473 whitespace fixes by Denis Vlasenko · 17 years ago
- 0e6f661 ash: handle "A=1 A=2 B=$A; echo $B". closes bug 947. by Denis Vlasenko · 17 years ago
- 94e87bc ash: explain why "set -o BOGUS" doesn't abort by Denis Vlasenko · 17 years ago
- 28bf671 ash: make ash -c 'if set -o barfoo 2>/dev/null; then echo foo; else echo bar; fi' work by Denis Vlasenko · 17 years ago
- e26b278 ash: fix warning about _GNU_SOURCE being redefined, fix typo in comment. by Denis Vlasenko · 17 years ago
- 991a1da ash: fix "orwell bug" 1984. Testcase: by Denis Vlasenko · 17 years ago
- 5c3d2b3 ash: readability enhancement, no code changes by Denis Vlasenko · 17 years ago
- 36fc3cd ash: code readability enhancements, no real code changes by Denis Vlasenko · 17 years ago
- 847fa77 *: tidy up usage of char **environ by Denis Vlasenko · 17 years ago
- fb0eba7 libbb: introduce and use safe_waitpid (loops in EINTR) by Denis Vlasenko · 17 years ago
- ee87ebf fix buglets found by randomconfig by Denis Vlasenko · 17 years ago
- 0163111 ash: reduce global data/bss usage by Denis Vlasenko · 17 years ago
- 9cb220b lineedit: don't violate API if we do simple fgets by Denis Vlasenko · 17 years ago
- 1aa7e47 reorganize applet table. Eliminates pointers to names. by Denis Vlasenko · 17 years ago
- ed270a5 ash: make code simpler, and do not do close(-1) - it's rude by Denis Vlasenko · 17 years ago
- fe5e23b remove echo_main -> bb_echo indirection by Denis Vlasenko · 17 years ago
- 7d75a96 ash: fix bug where redirection of closed fd was leaving it open afterwards. by Denis Vlasenko · 17 years ago
- a59f435 ash: if tcgetattr(stdin) fails, don't mess with tcsetattr by Denis Vlasenko · 17 years ago
- 037576d read_line_input: fix it to not do any fancy editing if echoing is disabled. by Denis Vlasenko · 17 years ago
- 0de37e1 ash: use fdprintf, not dprintf. *: trailing whitespace removed by Denis Vlasenko · 17 years ago
- 9b49a5e add -fvisibility=hidden to CC flags, mark XXX_main functions by Denis Vlasenko · 17 years ago
- 82d38da get rid of global "struct bb_applet *current_applet" by Denis Vlasenko · 17 years ago
- 4177022 ash: revert "cat | jobs" fix, it causes more problems than good by Denis Vlasenko · 17 years ago
- 96e1b38 introduce and use close_on_exec_on(fd). -50 bytes. by Denis Vlasenko · 17 years ago
- 6081868 fix "if (p) free(p)" constructs by Denis Vlasenko · 17 years ago
- 46a5306 ash: fix prompt expansion (Natanael Copa <natanael.copa@gmail.com>) by Denis Vlasenko · 17 years ago
- 7b70d78 ash: remove erroneously applied patch by Denis Vlasenko · 17 years ago
- f431017 httpd: optional support for partial downloads by Denis Vlasenko · 17 years ago
- bcceb0c ash: s/int/smallint/. -60 bytes. by Denis Vlasenko · 17 years ago
- 87f3b26 *: replace select-for-one descriptor with poll, it's smaller. by Denis Vlasenko · 17 years ago
- d37f222 libbb,crond,lash: fix getopt32 (don't know how it managed to slip through) by Denis Vlasenko · 17 years ago
- 6ca409e trylink: produce even more info about final link stage by Denis Vlasenko · 17 years ago
- dee82b6 ash: comment non-obvious code part by Denis Vlasenko · 17 years ago
- b71c668 style fix (stray space before ';') by Denis Vlasenko · 17 years ago
- d4293c7 ash: fix SEGV in forkchild (jp can be NULL). here documents were affected. by Denis Vlasenko · 17 years ago
- bdc406d ash: make "jobs | cat" work like in bash (was giving empty output) by Denis Vlasenko · 17 years ago
- fcfaf2e ash: small size optimization by Denis Vlasenko · 17 years ago
- 8fdc4b7 ash: recognize -l as --login equivalent; do not recognize +-login by Denis Vlasenko · 17 years ago
- 40ba998 ash: fix for buglet in DEBUG code (Nguyen Thai Ngoc Duy <pclouds@gmail.com>) by Denis Vlasenko · 17 years ago
- 1fc6238 devfsd: fix formatting (Tito <farmatito@tiscali.it>) by Denis Vlasenko · 17 years ago
- 80b8b39 Consolidate ARRAY_SIZE macro; remove one unneeded global var (walter harms <wharms@bfs.de>) by Denis Vlasenko · 17 years ago
- b304ead test: shrink a bit by Denis Vlasenko · 17 years ago
- ca525b4 *: BB_BANNER -> bb_banner (it is not a const or #define)! by Denis Vlasenko · 18 years ago
- d67cef2 hush: fix read builtin to not read ahead past eol and to not use by Denis Vlasenko · 18 years ago
- f5f75c5 remove nearly-duplicate PATHs in several places by Denis Vlasenko · 18 years ago
- bdbbb7e make busybox --install work even if /proc/self/exe doesn't exist by Denis Vlasenko · 18 years ago