From 05ed80b6a55ce3f831fc73f15df68b5ca2856ccb Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 7 May 2013 14:22:09 -0400 Subject: [PATCH] acl: include quote.h These files use quote(), so include quote.h for it otherwise we fail to build with errors like: copy-acl.c: In function 'copy_acl': copy-acl.c:51:7: error: implicit declaration of function 'quote' [-Werror=implicit-function-declaration] * lib/copy-acl.c: Include quote.h. * lib/set-acl.c: Likewise. Signed-off-by: Eric Blake --- ChangeLog | 6 ++++++ lib/copy-acl.c | 1 + lib/set-acl.c | 1 + 3 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 82e576761..32756216a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2013-05-07 Mike Frysinger + + acl: include quote.h + * lib/copy-acl.c: Include quote.h. + * lib/set-acl.c: Likewise. + 2013-05-06 Mike Frysinger fchownat, renameat, unlinkat: update statat dependencies diff --git a/lib/copy-acl.c b/lib/copy-acl.c index 55799a879..b4ebf7e8a 100644 --- a/lib/copy-acl.c +++ b/lib/copy-acl.c @@ -23,6 +23,7 @@ #include +#include "quote.h" #include "error.h" #include "gettext.h" #define _(msgid) gettext (msgid) diff --git a/lib/set-acl.c b/lib/set-acl.c index 7600f609f..a2a88a9e9 100644 --- a/lib/set-acl.c +++ b/lib/set-acl.c @@ -23,6 +23,7 @@ #include +#include "quote.h" #include "error.h" #include "gettext.h" #define _(msgid) gettext (msgid) -- 2.11.0