From: Lennart Poettering Date: Wed, 13 Jan 2016 01:19:57 +0000 (+0100) Subject: systemctl: improve wording of "systemctl enable" messages X-Git-Tag: v229~138^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b2e9cfcf0dffec9d990000ee1555e49a9049246;p=thirdparty%2Fsystemd.git systemctl: improve wording of "systemctl enable" messages Closes: #2299 --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 1448d974bd4..cbf71268c60 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1979,7 +1979,7 @@ static void dump_unit_file_changes(const UnitFileChange *changes, unsigned n_cha for (i = 0; i < n_changes; i++) { if (changes[i].type == UNIT_FILE_SYMLINK) - log_info("Created symlink from %s to %s.", changes[i].path, changes[i].source); + log_info("Created symlink %s, pointing to %s.", changes[i].path, changes[i].source); else log_info("Removed symlink %s.", changes[i].path); }