diff options
author | Matija Skala <mskala@gmx.com> | 2017-03-15 13:21:10 +0100 |
---|---|---|
committer | Matija Skala <mskala@gmx.com> | 2017-03-15 13:21:10 +0100 |
commit | 284d1cd0a12cad96a5ea61d1afb0dd677dbd147e (patch) | |
tree | 5c75de16f65ebaa4ccb9094d91bd8029ce9093c7 /src/libsystemd-network/sd-lldp.c | |
parent | build-sys: make RPM macros installation path configurable (#5564) (diff) | |
download | systemd-284d1cd0a12cad96a5ea61d1afb0dd677dbd147e.tar.xz systemd-284d1cd0a12cad96a5ea61d1afb0dd677dbd147e.zip |
fix includes
linux/sockios.h is needed for the SIOCGSTAMPNS macro
xlocale.h is included indirectly in glibc and doesn't even exist in
other libcs
Diffstat (limited to '')
-rw-r--r-- | src/libsystemd-network/sd-lldp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd-network/sd-lldp.c b/src/libsystemd-network/sd-lldp.c index 0702241506..39ddb2461a 100644 --- a/src/libsystemd-network/sd-lldp.c +++ b/src/libsystemd-network/sd-lldp.c @@ -19,6 +19,7 @@ ***/ #include <arpa/inet.h> +#include <linux/sockios.h> #include "sd-lldp.h" |