# HG changeset patch # User Mike Frysinger # Date 1367950929 14400 # Node ID e33e6edcd3a157515631d9347abf6fca1fc86ec7 # Parent 439a866b57b046ffe61e1635ed41ef90df416173 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 diff -r 439a866b57b0 -r e33e6edcd3a1 ChangeLog --- a/ChangeLog Mon May 06 20:24:41 2013 -0400 +++ b/ChangeLog Tue May 07 14:22:09 2013 -0400 @@ -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 -r 439a866b57b0 -r e33e6edcd3a1 lib/copy-acl.c --- a/lib/copy-acl.c Mon May 06 20:24:41 2013 -0400 +++ b/lib/copy-acl.c Tue May 07 14:22:09 2013 -0400 @@ -23,6 +23,7 @@ #include +#include "quote.h" #include "error.h" #include "gettext.h" #define _(msgid) gettext (msgid) diff -r 439a866b57b0 -r e33e6edcd3a1 lib/set-acl.c --- a/lib/set-acl.c Mon May 06 20:24:41 2013 -0400 +++ b/lib/set-acl.c Tue May 07 14:22:09 2013 -0400 @@ -23,6 +23,7 @@ #include +#include "quote.h" #include "error.h" #include "gettext.h" #define _(msgid) gettext (msgid)