diff options
author | Henry Castro <hcastro@collabora.com> | 2019-04-02 10:26:02 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2019-04-02 10:31:08 -0400 |
commit | 9657e4dfa3a608ef779810a2518688099af24d79 (patch) | |
tree | 41bd75c5f239d2d76850fed5a09e594434bbaa1d /net | |
parent | 0821940ae7a52e3479e31fd273701524dcf9d15e (diff) |
fix build: "sockaddr_un addrunix’ has incomplete type ...
and cannot be defined"
Change-Id: I2c136fc47c800ec3efd6268b4601100033e22724
Diffstat (limited to 'net')
-rw-r--r-- | net/Socket.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/Socket.cpp b/net/Socket.cpp index 345f566e2..5a952302d 100644 --- a/net/Socket.cpp +++ b/net/Socket.cpp @@ -17,6 +17,7 @@ #include <stdio.h> #include <unistd.h> #include <sys/types.h> +#include <sys/un.h> #include <zlib.h> #include <Poco/DateTime.h> |