#942750 coreutils: ls adds spaces to start of output, inconsistently

Package:
coreutils
Source:
coreutils
Description:
GNU core utilities
Submitter:
Brad Barnett
Date:
2019-10-20 21:27:04 UTC
Severity:
minor
#942750#5
Date:
2019-10-20 21:16:45 UTC
From:
To:
ls adds a space at the start of some output.  Seems to only happen when extra quoting is in the output:

root@hmm:/tmp/oo# ls
 a   b  'sd '
root@hmm:/tmp/oo# rm sd\
root@hmm:/tmp/oo# ls
a  b
root@hmm:/tmp/oo# touch c
root@hmm:/tmp/oo# ls
a  b  c
root@hmm:/tmp/oo# touch 'sdfsd sdfsd'
root@hmm:/tmp/oo# ls
 a   b   c  'sdfsd sdfsd'