From e2d839d316b006fe86b1f156d90da35fa0857bfb Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 7 Oct 2020 16:38:29 +0200 Subject: [PATCH] pretty-print: don't abbreviate needlessly in user-facing string --- src/shared/pretty-print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/pretty-print.c b/src/shared/pretty-print.c index edba23985f..f690f334a2 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());