Re: [Toybox] init.c ? and oneit

2021-04-30 Thread Rob Landley
On 4/30/21 7:03 PM, scsijon wrote: >>> yup, a whole bucket full of bloodworms, not just a small tub of fishing >>> worms if >>> you want to meet the complete init spec. >> A) Ew? >> >> B) what spec? Posix doesn't _mention_ init (or mount), which is one of my >> persistent gripes about it. > > Sear

Re: [Toybox] init.c ? and oneit

2021-04-30 Thread scsijon
On 30/4/21 6:13 am, toybox-requ...@lists.landley.net wrote: On 4/29/21 12:08 AM, scsijon wrote: On 20/4/21 5:19 pm, Rob Landley wrote: Mostly I just haven't prioritized it? (You're the first to ask in a while, I mostly just use oneit for my stuff, and android has its own giant init thing. I p

[Toybox] [PATCH] telnet: just use dprintf() for IAC sequences.

2021-04-30 Thread enh via Toybox
I don't see the need for the separate buffer, and just using dprintf() directly is less code. The only downside really is having to get the right number of `%c`s in your format string. --- toys/pending/telnet.c | 53 ++- 1 file changed, 12 insertions(+), 41