[PATCH] Fix '\%o' for printf from coreutils

2013-10-31 Thread Kacper Kornet
The printf utility provided by coreutils when interpreting '\%o' format does not recognize %o as formatting directive. For example printf '\%o 0 returns \%o and warning: ignoring excess arguments, starting with ‘0’, which results in failed tests in t5309-pack-delta-cycles.sh. In most shells the

Re: [PATCH] Fix '\%o' for printf from coreutils

2013-10-31 Thread Jeff King
On Thu, Oct 31, 2013 at 12:51:32PM +0100, Kacper Kornet wrote: The printf utility provided by coreutils when interpreting '\%o' format does not recognize %o as formatting directive. For example printf '\%o 0 returns \%o and warning: ignoring excess arguments, starting with ‘0’, which results