On April 27, 2022 1:54 PM, Carlo Arenas wrote: >To: rsbecker@xxxxxxxxxxxxx >Cc: phillip.wood@xxxxxxxxxxxxx; Junio C Hamano <gitster@xxxxxxxxx>; >git@xxxxxxxxxxxxxxx; philipoakley@iee.email; me@xxxxxxxxxxxx; >guy.j@xxxxxxxxx; szeder.dev@xxxxxxxxx; johannes.Schindelin@xxxxxx; >derrickstolee@xxxxxxxxxx >Subject: Re: [PATCH] git-compat-util: avoid failing dir ownership checks if running >privileged > >On Wed, Apr 27, 2022 at 10:49 AM <rsbecker@xxxxxxxxxxxxx> wrote: >> >> I can confirm this on multiple 32-bit platforms. With >strtol("123456789012345678", &endptr, 10) returns 2147483647 and *endptr == '\0' >just beyond the last 8. > >can you also confirm that you have strtoul and works the same, before I break >NON-STOP in my next reroll? Results on NonStop: strtol("123456789012345678", &endptr, 10) returns 4294967295 and *endptr == '\0' just beyond the last 8.