Re: csplit reports No space left on device

2022-08-19 Thread Bernhard Voelker
On 8/18/22 20:19, Pádraig Brady wrote: I would do an `ef2sck -f` on the unmounted file system if possible. Could also be an unusual "Reserved blocks" percentage for the root user. See `tune2fs -l $DEVICE`. Have a nice day, Berny

[PATCH] basenc: Paddingless input/output for base64url

2022-08-19 Thread Imre Rad via GNU coreutils General Discussion
* src/basenc.c (ignore-padding): Padding is optional for base64url encoding and many web services produce and expect payload without padding. New command line argument (--ignore-padding) for basenc allows generating paddingless base64url outputs and you can also use it for decoding without scary wa

Re: [PATCH] basenc: Paddingless input/output for base64url

2022-08-19 Thread Michael Cook
+base64url_decode_ctx_wrapper_no_padding (struct base_decode_context *ctx, + char const *restrict in, idx_t inlen, + char *restrict out, idx_t *outlen) +{ +bool b = base64url_decode_ctx_wrapper(ctx, in, inlen, out, outlen); +if (!b &

Re: [PATCH] basenc: Paddingless input/output for base64url

2022-08-19 Thread Imre Rad via GNU coreutils General Discussion
Ah, good catch, thanks. Let me send a new version on Monday. Adding a new test as well. Imre On Fri, Aug 19, 2022 at 5:25 PM Michael Cook wrote: > +base64url_decode_ctx_wrapper_no_padding (struct base_decode_context *ctx, > + char const *restrict in, idx_t inlen, > +