aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-04-08bzip2: fix two crashes on corrupted archivesDenys Vlasenko
2018-04-08wget: check chunk length for overflowing off_tDenys Vlasenko
2018-04-08libbb.h: always include sys/resource.hDenys Vlasenko
2018-04-08lzop: remove method checks which are always true/falseDenys Vlasenko
2018-04-08lzop: buffer several 32-bit writes when we start a new compressed blockDenys Vlasenko
2018-04-08lzop: reuse stringsDenys Vlasenko
2018-04-08lzop: checksum reads do not need to be checksummedDenys Vlasenko
2018-04-08lzop: don't support ancient versions < 0.94 (15 Oct 1997)Denys Vlasenko
2018-04-08lzop: code shrink by using header_t matching on-disk layoutDenys Vlasenko
2018-04-07tar: trim help textDenys Vlasenko
2018-04-07hush: fix prompt in multi-line $(())Denys Vlasenko
2018-04-07libbb: switch bb_ask_noecho() to "mallocing" string return APIDenys Vlasenko
2018-04-07xargs: use bb_ask_y_confirmation_FILE() instead of homegrown copyDenys Vlasenko
2018-04-07libbb: rename bb_ask -> bb_ask_noecho, bb_ask_confirmation -> bb_ask_y_confir...Denys Vlasenko
2018-04-07telnet: move winsize detection closer to I/O loop, delete non-functioning deb...Denys Vlasenko
2018-04-07ftpd: allow -A if !FTPD_AUTHENTICATION as wellDenys Vlasenko
2018-04-07ftpd: added -A option to disable all authentication, closes 10921Denys Vlasenko
2018-04-07wget,ftpd: shorten and reuse stringsDenys Vlasenko
2018-04-07httpd: do not default to Content-type: application/octet-streamDenys Vlasenko
2018-04-06scripts/kconfig/mconf.c: survive is SIGWINCH is not definedDenys Vlasenko
2018-04-06i386: make stack size optimization selectable, and allow i486 insns (bswap)Denys Vlasenko
2018-04-06placate gcc-8.0.1 warningsDenys Vlasenko
2018-04-06hush: fix "unset PS1/PS2", and put them into initial variable setDenys Vlasenko
2018-04-06sort: smaller and more agressive FEATURE_SORT_OPTIMIZE_MEMORYDenys Vlasenko
2018-04-06hush: if we did match "LINENO" or "OPTIND", stop further comparisonsDenys Vlasenko
2018-04-06hush: consolidate handling of setting/unsetting of PSn, LINENO, OPTINDDenys Vlasenko
2018-04-05hush: update to correctly handle changed var_bash[346].testsDenys Vlasenko
2018-04-05hush: implement "hush -s"Denys Vlasenko
2018-04-05placate gcc 8.0.1 sprintf overflow warnings in config toolsDenys Vlasenko
2018-04-05hush: fix a few more corner cases with empty-expanding `cmds`Denys Vlasenko
2018-04-05hush: fix corner cases with exec in empty expansionsDenys Vlasenko
2018-04-05hush: less mind-bending set_vars_and_save_old()Denys Vlasenko
2018-04-05hush: "no logic changes" in last commit was not true, fix it upDenys Vlasenko
2018-04-05hush: make run_pipe code simpler to understand, no logic changesDenys Vlasenko
2018-04-05hush: fix a bug where we don't properly handle f() { a=A; b=B; }; a= fDenys Vlasenko
2018-04-04hush: make var nesting code independent of "local" supportDenys Vlasenko
2018-04-04hush: fix for readonly vars in "ro=A ro=B cmd" caseDenys Vlasenko
2018-04-04sort: move misplaced commentDenys Vlasenko
2018-04-04sort: FEATURE_SORT_OPTIMIZE_MEMORYDenys Vlasenko
2018-04-04ash: unbreak PS1 parsing after "ash: parser: Add syntax stack..." commitDenys Vlasenko
2018-04-03hush: support "f() (cmd)" functionsDenys Vlasenko
2018-04-03hush: fix mishandling of "true | f() { echo QWE; }"Denys Vlasenko
2018-04-03hush: fix "set -e; false || x=1; echo OK"Denys Vlasenko
2018-04-03hush: one-word, no-globbing handling of local/export/readonly argsDenys Vlasenko
2018-04-02ash: parser: Fix parameter expansion inside inner double quotesDenys Vlasenko
2018-04-02hush: fix a backslash-removal bug in caseDenys Vlasenko
2018-04-02ash: expand: Fix bugs with words connected to the right of $@Denys Vlasenko
2018-04-02ash: redir: Fix typo in noclobber codeDenys Vlasenko
2018-04-02ash: parser: Fix single-quoted patterns in here-documentsDenys Vlasenko
2018-04-02hush: remove stray debugging printoutDenys Vlasenko