From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.4 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,HTML_MESSAGE,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 5350 invoked from network); 15 Dec 2021 18:38:10 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 15 Dec 2021 18:38:10 -0000 Received: (qmail 18056 invoked by uid 550); 15 Dec 2021 18:38:07 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 18023 invoked from network); 15 Dec 2021 18:38:06 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=W/Thj7DqaVZKZT+BBwxm5v2gqke2MCt3pU1RiirKHjw=; b=IbwslFnYyjTFxTMVrnh+g3CS2SV2+6C9KW2wGQpUBnvv1E/LodltZCefOUpsIzap4s Pd5+xvSRLj6xepmTeR4JONDCMACWXgb6aU5h0B2FENBCCrUmZQ+KOSmBqT/JG4A6ncM1 t4sUoznXoL0FPdIlbU6N/oWLRbMvaS9KJqW+3LoMP6zl/GmEaqazqYtgMsGfjUZzFv0r RWyoTdXmi6tDDRXfz0eikoW7YuQJ6NnyIE/VfPA/+4ZvOIICLccnOeEeBFQx/+RjMXxl PWAOtN4XtzQdKmUYsiZ1ilBbFcFV9FOfX/9L5rHubMm5nBF2WOUC+czYv+1XrNqO6fwp 9g5Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=W/Thj7DqaVZKZT+BBwxm5v2gqke2MCt3pU1RiirKHjw=; b=wdlUMGeMx0ufTau17ZoYj2tetNYPFwTHzhCriZWHUnGwuW6OjXO7CAMvet1T0zL0Qn 4pM1zuO84BQCZfkfHBDr4i3/TSzj0j1jTjrhvsoS5vzueQ1OfJ9IaCDdurkgdSUTpNBc 4l6zDIN1CcxXE9GFrXkpYcYlIyvCFKMNrcCfgUbIxyZAUfX/pedWRWe9+IOoHVqWUF7a nZOVI079Gf+TPPX0e7lGanda6D7Ej+BxQPCMTJF6KJbjbUVrS8NOUh7uYxdPXmSKK5Sh UvSGvL1NkmhF1cekU6GOjJIW1eGqMt6S3gKAjEYWNlJwqtyG4aPsmwDiOzziI93srFet xADQ== X-Gm-Message-State: AOAM532Ed+XUs9fN3ttQON3e7UrgvZm+e/WfEbS3VjZcxDObG9IBYXQP BOYteqYOv2YWU50FgnlF6f61MBsdd2o3czNIYuU= X-Google-Smtp-Source: ABdhPJwfrSCiLJcFWO0oK/4bFMw6kyfJvjcZYYU0yRIzcTwaxJQfXvNOP2S3pufQi9r1m/4YyxLdIwyZX6amWuBqm9c= X-Received: by 2002:a67:ae0f:: with SMTP id x15mr71687vse.57.1639593474632; Wed, 15 Dec 2021 10:37:54 -0800 (PST) MIME-Version: 1.0 References: <20211214160327.GA1494342@port70.net> <20211215190914.233d3021.quinq@fifth.space> In-Reply-To: <20211215190914.233d3021.quinq@fifth.space> From: Andrew Snyder Date: Wed, 15 Dec 2021 13:37:43 -0500 Message-ID: To: Quentin Rameau Cc: musl@lists.openwall.com Content-Type: multipart/alternative; boundary="000000000000a1b07605d3339a2c" Subject: Re: [musl] print does not support variable width plus padding --000000000000a1b07605d3339a2c Content-Type: text/plain; charset="UTF-8" That is probably true but I think on accident trying to replicate my original issue which was using the native function On Wed, Dec 15, 2021 at 1:09 PM Quentin Rameau wrote: > Hi Andrew, > > > Sorry accidentally sent before attaching this > > > > ~# docker run -it --rm alpine /bin/ash > > / # /lib/libc.musl-x86_64.so.1 > > musl libc (x86_64) > > Version 1.2.2 > > Dynamic Program Loader > > Usage: /lib/libc.musl-x86_64.so.1 [options] [--] pathname [args] > > / # printf %0*i 2 1 > > ash: %0*i: invalid format > > This looks like you found a bug in Busybox printf implementation. > --000000000000a1b07605d3339a2c Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
That is probably true but I think on accident trying to r= eplicate my original issue which was using the native function=C2=A0
<= div>
On= Wed, Dec 15, 2021 at 1:09 PM Quentin Rameau <quinq@fifth.space> wrote:
Hi An= drew,

> Sorry accidentally sent before attaching this
>
> ~# docker run -it --rm alpine /bin/ash
> / # /lib/libc.musl-x86_64.so.1
> musl libc (x86_64)
> Version 1.2.2
> Dynamic Program Loader
> Usage: /lib/libc.musl-x86_64.so.1 [options] [--] pathname [args]
> / # printf %0*i 2 1
> ash: %0*i: invalid format

This looks like you found a bug in Busybox printf implementation.
--000000000000a1b07605d3339a2c--