From 69403c38f4af313da65880cb95e062fdea2212a8 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Sun, 11 Oct 2009 10:35:38 +0200 Subject: [PATCH] Fixed ifdefs --- bacula/src/filed/xattr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bacula/src/filed/xattr.c b/bacula/src/filed/xattr.c index cf5a452f43..1d54625ac0 100644 --- a/bacula/src/filed/xattr.c +++ b/bacula/src/filed/xattr.c @@ -1074,9 +1074,9 @@ static bxattr_exit_code (*os_parse_xattr_streams)(JCR *jcr, int stream) = bsd_pa #include #endif -#if !defined(HAVE_OPENAT) || - !defined(HAVE_UNKINKAT) || - !defined(HAVE_FCHOWNAT) || +#if !defined(HAVE_OPENAT) || \ + !defined(HAVE_UNKINKAT) || \ + !defined(HAVE_FCHOWNAT) || \ !defined(HAVE_FUTIMESAT) #error "Unable to compile code because of missing openat, unlinkat, fchownat or futimesat function" #endif -- 2.39.5