------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugs.exim.org/show_bug.cgi?id=1226 --- Comment #4 from Git Commit <[email protected]> 2012-04-23 05:17:05 --- Git commit: http://git.exim.org/exim.git/commitdiff/8dfac75958fa63fcc463075742f99ec6b1297b64 commit 8dfac75958fa63fcc463075742f99ec6b1297b64 Author: Phil Pennock <[email protected]> AuthorDate: Sun Apr 22 20:20:16 2012 -0700 Commit: Phil Pennock <[email protected]> CommitDate: Sun Apr 22 20:20:16 2012 -0700 Better ls output fixing. fixes bug 1226 Further investigation from Jeremy Harris showed the previous fix left trailing whitespace on output which previously ended after the permission bits (eg, test 0240). This works better for me. --- test/runtest | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/test/runtest b/test/runtest index c199539..69c6931 100755 --- a/test/runtest +++ b/test/runtest @@ -598,7 +598,9 @@ RESET_AFTER_EXTRA_LINE_READ: # Handle only the Gnu and MacOS space, dot, plus and at-sign. A full [[:graph:]] # unfortunately matches a non-ls linefull of dashes. # Allow the case where we've already picked out the file protection bits. - s/^([-d](?:[-r][-w][-SsTtx]){3})[.+@]?( +|$)/\1 /; + if (s/^([-d](?:[-r][-w][-SsTtx]){3})[.+@]?( +|$)/\1\2/) { + s/ +/ /g; + } # ======== Message sizes ========= -- Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email -- ## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
