diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-06 12:16:33 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-03-06 12:16:33 -0500 |
commit | 8cbd5fc2e616785d97e84f7e17b845b74a6ccfd1 (patch) | |
tree | 4f3f2b45aa11e0facaf7873105226bfcf32c9dd8 /src/chroot-tools/indent | |
parent | 5656c9706cf6f96e0646e9594750d8239e5fcbea (diff) |
Update for the new version of systemdv20140306
Diffstat (limited to 'src/chroot-tools/indent')
-rwxr-xr-x | src/chroot-tools/indent | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/chroot-tools/indent b/src/chroot-tools/indent index 0e2d0e0..5a7f654 100755 --- a/src/chroot-tools/indent +++ b/src/chroot-tools/indent @@ -19,9 +19,7 @@ while (1) { $c = substr($buffer, $_, 1); if ($c eq "\n") { syswrite(STDOUT, $indent) if ($print_indent); - # XXX: SYSTEMD-STDOUT HACK - #syswrite(STDOUT, $c, 1); - syswrite(STDOUT, "\r\n", 2); + syswrite(STDOUT, $c, 1); $print_indent = 1; } elsif ($c eq "\r") { syswrite(STDOUT, $c, 1); |