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: 34c10968cb
This commit is contained in:
Filipe Brandenburger 2014-06-19 11:18:36 -07:00 committed by Lennart Poettering
parent 228b2a1277
commit cacd6403a0

View file

@ -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>