chiark / gitweb /
execute: use right logger socket
authorLennart Poettering <lennart@poettering.net>
Sun, 11 Jul 2010 02:38:40 +0000 (04:38 +0200)
committerLennart Poettering <lennart@poettering.net>
Sun, 11 Jul 2010 02:38:40 +0000 (04:38 +0200)
src/execute.c

index 0c2526b33e1423b35a834db1553d49be468aa0b3..6363719cdeb80e10d3e1ce7480e541f24f02e2b7 100644 (file)
@@ -171,7 +171,7 @@ static int connect_logger_as(const ExecContext *context, ExecOutput output, cons
         sa.sa.sa_family = AF_UNIX;
         strncpy(sa.un.sun_path+1, LOGGER_SOCKET, sizeof(sa.un.sun_path)-1);
 
-        if (connect(fd, &sa.sa, sizeof(sa)) < 0) {
+        if (connect(fd, &sa.sa, sizeof(sa_family_t) + 1 + sizeof(LOGGER_SOCKET) - 1) < 0) {
                 close_nointr_nofail(fd);
                 return -errno;
         }