diff options
author | Filipe Brandenburger <filbranden@google.com> | 2014-06-19 11:18:36 -0700 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-20 00:26:03 +0200 |
commit | cacd6403a0242f46cf1473a157af91757993063c (patch) | |
tree | f47a2f4fe739a636e8e64704dadcac232c93600d | |
parent | 228b2a1277d3b3ae5e7cec32d200ec1a9259d9b0 (diff) |
coredump: fix include of xattr.h
The correct path is now <sys/xattr.h> (from glibc-headers) and no longer
<attr/xattr.h> (from libattr-devel.)
Fixes: 34c10968cbe3b5591b3c0ce225b8694edd9709d0
-rw-r--r-- | src/journal/coredump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/coredump.c b/src/journal/coredump.c index 0a141c9040..442c969778 100644 --- a/src/journal/coredump.c +++ b/src/journal/coredump.c @@ -24,7 +24,7 @@ #include <stdio.h> #include <sys/prctl.h> #include <sys/types.h> -#include <attr/xattr.h> +#include <sys/xattr.h> #include <systemd/sd-journal.h> #include <systemd/sd-login.h> |