]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sysctl: reword warning message a bit 869/head
authorLennart Poettering <lennart@poettering.net>
Wed, 5 Aug 2015 08:02:24 +0000 (11:02 +0300)
committerLennart Poettering <lennart@poettering.net>
Wed, 5 Aug 2015 08:02:24 +0000 (11:02 +0300)
Let's make this less dramatic, in order to not confuse people too much
making them think that this was something to actually fix.

src/sysctl/sysctl.c

index ee0f57cfecbd88d1082271265e4c16de1f33b606..618844382f79c49e2791db79b2a1c02474f85934 100644 (file)
@@ -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;