summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-01-13 02:19:57 +0100
committerLennart Poettering <lennart@poettering.net>2016-01-13 20:21:36 +0100
commit4b2e9cfcf0dffec9d990000ee1555e49a9049246 (patch)
treee3cd02c31a99e500edc7d7110a2651bb12bc08a4 /src
parentd41084a5860999e7fd45a95130a2444dda035d7d (diff)
systemctl: improve wording of "systemctl enable" messages
Closes: #2299
Diffstat (limited to 'src')
-rw-r--r--src/systemctl/systemctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index 1448d974bd..cbf71268c6 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);
}