From: Lennart Poettering Date: Fri, 14 Jul 2017 16:39:18 +0000 (+0200) Subject: escape: fix systemd-escape description text X-Git-Tag: v235~281^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ab7e3ef561e5c1ff63b58f4a329a9f90f0768eb0;p=platform%2Fupstream%2Fsystemd.git escape: fix systemd-escape description text The long man page paragraph got it right: the tool is for escaping systemd unit names, not just system unit names. Also fix the short man page paragraph and the --help text. Follow-up for 303608c1bcf9568371625fbbd9442946cadba422 --- diff --git a/man/systemd-escape.xml b/man/systemd-escape.xml index bb4c7e4..fb20d2d 100644 --- a/man/systemd-escape.xml +++ b/man/systemd-escape.xml @@ -45,7 +45,7 @@ systemd-escape - Escape strings for usage in system unit names + Escape strings for usage in systemd unit names diff --git a/src/escape/escape.c b/src/escape/escape.c index 89e885d..5518c2a 100644 --- a/src/escape/escape.c +++ b/src/escape/escape.c @@ -38,7 +38,7 @@ static bool arg_path = false; static void help(void) { printf("%s [OPTIONS...] [NAME...]\n\n" - "Escape strings for usage in system unit names.\n\n" + "Escape strings for usage in systemd unit names.\n\n" " -h --help Show this help\n" " --version Show package version\n" " --suffix=SUFFIX Unit suffix to append to escaped strings\n"