From: Lennart Poettering <lennart@poettering.net>
Date: Sat, 2 Apr 2011 00:46:16 +0000 (+0200)
Subject: systemd: fix sd_is_socket() invocation
X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;h=4cfd855eb3f148cfad74c562004a723d0a9862b7;p=catta

systemd: fix sd_is_socket() invocation
---

diff --git a/avahi-daemon/simple-protocol.c b/avahi-daemon/simple-protocol.c
index 7f75562..3e0ebb1 100644
--- a/avahi-daemon/simple-protocol.c
+++ b/avahi-daemon/simple-protocol.c
@@ -475,7 +475,7 @@ int simple_protocol_setup(const AvahiPoll *poll_api) {
     if (n == 1) {
         int r;
 
-        if ((r = sd_is_socket(AF_LOCAL, SOCK_STREAM, 1, 0)) < 0) {
+        if ((r = sd_is_socket(SD_LISTEN_FDS_START, AF_LOCAL, SOCK_STREAM, 1)) < 0) {
             avahi_log_warn("Passed systemd file descriptor is of wrong type: %s", strerror(-r));
             goto fail;
         }