diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-07 00:53:19 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-07 00:53:19 +0100 |
commit | 8bdbb8d9cbe1d35708385573d70984ab4533812d (patch) | |
tree | c1ba38f8065ebab124b71c3c6ee2d2c2038d697b | |
parent | d1529c9ea012d37a595417af98804d5d0b5f00d9 (diff) |
machinectl: we need glibc's socket.h, not our own
-rw-r--r-- | src/machine/machinectl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index c48abcd0bb..6234f6add2 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -19,13 +19,13 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <sys/socket.h> #include <unistd.h> #include <errno.h> #include <string.h> #include <getopt.h> #include <pwd.h> #include <locale.h> -#include <socket.h> #include <fcntl.h> #include "sd-bus.h" |