From: Ruben Kerkhof Date: Tue, 1 Mar 2016 10:53:19 +0000 (+0100) Subject: collectd.c: mark notify_systemd as static X-Git-Tag: collectd-5.5.2~52 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=76cb3ac0d3b6e7b895326a284e27a224ba795079;p=collectd.git collectd.c: mark notify_systemd as static Commit straight to 5.5. This function didn't exist in 5.4. --- diff --git a/src/daemon/collectd.c b/src/daemon/collectd.c index 21bf23fd..6e625bbb 100644 --- a/src/daemon/collectd.c +++ b/src/daemon/collectd.c @@ -440,7 +440,7 @@ static int notify_upstart (void) return 1; } -int notify_systemd (void) +static int notify_systemd (void) { int fd = -1; const char *notifysocket = getenv("NOTIFY_SOCKET");