Re: invalid options with date

2016-09-22 Thread Jeremy Chadwick
f the actual problem? You've given descriptions, but aren't pasting full terminal output. It would help because then one could reverse-engineer some of the messages shown back to code and see if the cause could be determined. -- | Jeremy Chadwick j...@k

Re: invalid options with date

2016-09-22 Thread Jeremy Chadwick
Y]MM]DD]hh]mm[.ss] 'date TIME' form accepts MMDDhhmm[[YY]YY][.ss] instead -- | Jeremy Chadwick j...@koitsu.org | | UNIX Systems Administratorhttp://jdc.koitsu.org/ | | Making life hard for others since 1977. PGP 4BD6C0CB | On T

Re: BusyBox for OSX

2016-09-05 Thread Jeremy Chadwick
urther enjoyment, Google "Ruby smart quotes" for examples of how these cause problems in a least one programming language. -- | Jeremy Chadwick j...@koitsu.org | | UNIX Systems Administratorhttp://jdc.koitsu.org/ | | Making life hard

Re: Altscreens for less and more

2016-09-05 Thread Jeremy Chadwick
entionally disable the capability. As stated, others dislike it too: http://www.shallowsky.com/linux/noaltscreen.html Hope this answers this question. -- | Jeremy Chadwick j...@koitsu.org | | UNIX Systems Administratorhttp://jdc.koitsu.org/ | | M

Re: Parallel make bug in busybox

2016-08-13 Thread Jeremy Chadwick
ies that create files natively that later recipes rely on. I would suggest experimenting with .PHONY and/or .NOTPARALLEL. Refer to the GNU make manual (the docs on .PHONY are good): https://www.gnu.org/software/make/manual/html_node/Special-Targets.html -- | Jeremy Chadwick

Re: [PATCH] wget: add TLS SNI support via openssl s_client

2016-07-20 Thread Jeremy Chadwick
On Wed, Jul 20, 2016 at 02:56:40PM -0700, Jeremy Chadwick wrote: > +static int is_ip_address(const char *string) > ... > + if (ENABLE_FEATURE_IPV6 && result != 0) { Minor issue: the "result != 0" comparison is wrong (inverted). It could, if an IP address was

[PATCH] wget: add TLS SNI support via openssl s_client

2016-07-20 Thread Jeremy Chadwick
o-check-certificates flag must be added so that it can be disabled. -- | Jeremy Chadwick j...@koitsu.org | | UNIX Systems Administratorhttp://jdc.koitsu.org/ | | Making life hard for others since 1977. PGP 4BD6C0CB | === SNIP === dif