From: Lucas Werkmeister Date: Wed, 2 Nov 2016 22:12:03 +0000 (+0100) Subject: systemctl: fix incorrect "need reload" on cat (#4535) X-Git-Tag: v232~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b9635d16656090afa6c3aef52be469ff39fe247;p=thirdparty%2Fsystemd.git systemctl: fix incorrect "need reload" on cat (#4535) Reported by @evverx in #4493. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index d311bbec1a0..b6d66aa3631 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -5272,7 +5272,7 @@ static int cat(int argc, char *argv[], void *userdata) { else puts(""); - if (need_daemon_reload(bus, *name)) + if (need_daemon_reload(bus, *name) > 0) /* ignore errors (<0), this is informational output */ fprintf(stderr, "%s# Warning: %s changed on disk, the version systemd has loaded is outdated.\n" "%s# This output shows the current version of the unit's original fragment and drop-in files.\n"