From: Lennart Poettering Date: Wed, 7 Oct 2020 14:38:29 +0000 (+0200) Subject: pretty-print: don't abbreviate needlessly in user-facing string X-Git-Tag: v247-rc1~109^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2d839d316b006fe86b1f156d90da35fa0857bfb;p=thirdparty%2Fsystemd.git pretty-print: don't abbreviate needlessly in user-facing string --- diff --git a/src/shared/pretty-print.c b/src/shared/pretty-print.c index edba23985f3..f690f334a2a 100644 --- a/src/shared/pretty-print.c +++ b/src/shared/pretty-print.c @@ -174,7 +174,7 @@ int cat_files(const char *file, char **dropins, CatFlags flags) { if (file) { r = cat_file(file, false); if (r == -ENOENT && (flags & CAT_FLAGS_MAIN_FILE_OPTIONAL)) - printf("%s# config file %s not found%s\n", + printf("%s# Configuration file %s not found%s\n", ansi_highlight_magenta(), file, ansi_normal());