From: Lennart Poettering Date: Wed, 5 Aug 2015 08:02:24 +0000 (+0300) Subject: sysctl: reword warning message a bit X-Git-Tag: v225~112^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F869%2Fhead;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c index ee0f57cfecb..618844382f7 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;