diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-08-05 11:02:24 +0300 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-08-05 11:02:24 +0300 |
commit | 384c5b44fe9bc95333af2e6bdbe86bd5d58d046b (patch) | |
tree | 00be91c0d392f9f9cb4010236e2f3cd205dff3df /src/sysctl | |
parent | b2627f5ac42d86163a6b08f19a1aea472df999de (diff) | |
download | systemd-384c5b44fe9bc95333af2e6bdbe86bd5d58d046b.tar.gz |
sysctl: reword warning message a bit
Let's make this less dramatic, in order to not confuse people too much
making them think that this was something to actually fix.
Diffstat (limited to 'src/sysctl')
-rw-r--r-- | src/sysctl/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c index ee0f57cfec..618844382f 100644 --- a/src/sysctl/sysctl.c +++ b/src/sysctl/sysctl.c @@ -52,7 +52,7 @@ static int apply_all(Hashmap *sysctl_options) { k = sysctl_write(property, value); if (k < 0) { log_full_errno(k == -ENOENT ? LOG_INFO : LOG_WARNING, k, - "Failed to write '%s' to '%s': %m", value, property); + "Couldn't write '%s' to '%s', ignoring: %m", value, property); if (r == 0 && k != -ENOENT) r = k; |