diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-03-13 03:58:03 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-13 04:17:37 +0100 |
commit | ea6c2dd1f819c3d481fc590849809aeb552c1d48 (patch) | |
tree | 0af9968a0317503e9ea703ddf02e96a8defb8607 /src/shared/output-mode.h | |
parent | 15ef11449b31e2fc91f2172c8afedb20ecad5ae9 (diff) |
systemctl: suppress duplicate newline if there's not log output in "systemctl status"
Diffstat (limited to 'src/shared/output-mode.h')
-rw-r--r-- | src/shared/output-mode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/output-mode.h b/src/shared/output-mode.h index 9da789db76..ac1bb0123b 100644 --- a/src/shared/output-mode.h +++ b/src/shared/output-mode.h @@ -42,5 +42,6 @@ typedef enum OutputFlags { OUTPUT_WARN_CUTOFF = 1 << 2, OUTPUT_FULL_WIDTH = 1 << 3, OUTPUT_COLOR = 1 << 4, - OUTPUT_CATALOG = 1 << 5 + OUTPUT_CATALOG = 1 << 5, + OUTPUT_BEGIN_NEWLINE = 1 << 6, } OutputFlags; |