aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* hush: simplify process_command_subs()Denys Vlasenko2018-02-131-11/+9
* ash : fix double-quoted "\z" handlingDenys Vlasenko2018-02-135-6/+113
* wget: more thorough sanitization of other side's dataDenys Vlasenko2018-02-121-31/+55
* testsuite: update busybox and bzcat testsRon Yorston2018-02-122-14/+12
* cp: fix option handling in non-longopt configDenys Vlasenko2018-02-111-1/+5
* arping: code shrinkDenys Vlasenko2018-02-111-19/+20
* libbb: introduce and use bb_getsockname()Denys Vlasenko2018-02-116-20/+29
* arping: move packet buffer, sigset and struct ifreq to malloced "globals"Denys Vlasenko2018-02-111-41/+34
* arping: fix the case when inherited signal mask masks out ALRMDenys Vlasenko2018-02-111-7/+16
* arping: change a few message strings to be closer to iputils arpingDenys Vlasenko2018-02-111-7/+8
* arping: code shrinkDenys Vlasenko2018-02-111-28/+28
* svlogd: improve --help textDenys Vlasenko2018-02-091-6/+13
* hush: probably fixing a bug in last LINENO fixDenys Vlasenko2018-02-081-11/+6
* hush: LINENO fixDenys Vlasenko2018-02-081-24/+77
* ip: fix crash in "ip neigh show"Denys Vlasenko2018-02-087-20/+28
* wget: do not ask for TLS-encrypted downloads on plain ftp:// URLsDenys Vlasenko2018-02-081-5/+7
* libbb: shrink wget/tftp progress indicator code a bit moreDenys Vlasenko2018-02-071-29/+27
* libbb: shrink wget/tftp progress indicator code for 32-bitDenys Vlasenko2018-02-071-40/+38
* udhcp: do not setlinebuf(stdout), we don't print to stdout anymoreDenys Vlasenko2018-02-073-6/+0
* bzip2: expose tuning knob for faster/smaller codeDenys Vlasenko2018-02-075-20/+41
* wget: attempt to negotiate encrypted data ftps stream ("PROT P")Denys Vlasenko2018-02-061-3/+7
* fix compile failure in previous commitDenys Vlasenko2018-02-061-1/+1
* unzip: do not set directory mode to 0777Denys Vlasenko2018-02-062-7/+13
* ar: hopefully fix out-of-bounds read in get_header_ar()Denys Vlasenko2018-02-061-2/+2
* fix a thinko in parse_pasv_epsv.cDenys Vlasenko2018-02-061-2/+2
* wget: add EPSV supportDenys Vlasenko2018-02-064-61/+82
* wget: initial support for ftps://Denys Vlasenko2018-02-064-16/+42
* wget: preparations for ftps:// support (block move, no code changes)Denys Vlasenko2018-02-061-81/+81
* tls: fix hash calculations if client cert is requested and sentDenys Vlasenko2018-02-061-40/+54
* ftpd: handle restarts past 2147483647 bytes. closes 10741Denys Vlasenko2018-02-051-1/+1
* bzip2: work around bad compiler optimizationDenys Vlasenko2018-02-051-32/+43
* ftpd: fix aliasing warning from gcc-6.1.1Denys Vlasenko2018-02-041-2/+2
* ftpgetput: add EPSV support (PASV-like thing for IPv6)Denys Vlasenko2018-02-041-6/+16
* ftpgetput: preparations for ESPV support, no code changesDenys Vlasenko2018-02-041-15/+16
* ftpd: switch to mallced "globals"Denys Vlasenko2018-02-041-2/+6
* gunzip: fix from gzip-1.3.12 for gzip file with all zero length codesDenys Vlasenko2018-02-041-4/+11
* bzip2: move runningOrder[] back to stack - 256 bytes is not muchDenys Vlasenko2018-02-032-6/+8
* bzip2: move ->origPtr out of struct EState, make a few members smallerDenys Vlasenko2018-02-033-27/+27
* bzip2: pass sorting params through EState* pointerDenys Vlasenko2018-02-033-67/+65
* gzip2: small simplification in mainSimpleSort()Denys Vlasenko2018-02-031-14/+15
* bzip2: a few more locals converted to generic typesDenys Vlasenko2018-02-031-7/+7
* bzip2: eliminate one parameter to mainQSort3()Denys Vlasenko2018-02-031-5/+9
* bzip2: small simplification in mainSort()Denys Vlasenko2018-02-031-5/+5
* bzip2: convert some locals to unsigned'sDenys Vlasenko2018-02-031-5/+5
* bzip2: runningOrder[] values are always 0..255, make it uint8Denys Vlasenko2018-02-032-6/+5
* bzip2: remove redundant clearing of an alredy unset bitDenys Vlasenko2018-02-031-2/+2
* bzip2: eliminate write-only local numQSortedDenys Vlasenko2018-02-031-7/+3
* bzip2: make locals in mainSort() saner, convert one of them from uint16 to un...Denys Vlasenko2018-02-031-29/+36
* bzip2: remove redundant loop termination check in mainSort()Denys Vlasenko2018-02-031-3/+6
* bzip2: reduce indentation, no code changesDenys Vlasenko2018-02-031-44/+45