changeset 17391:e33e6edcd3a1

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 <eblake@redhat.com>
author Mike Frysinger <vapier@gentoo.org>
date Tue, 07 May 2013 14:22:09 -0400
parents 439a866b57b0
children 27b01cdea44c
files ChangeLog lib/copy-acl.c lib/set-acl.c
diffstat 3 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-05-07  Mike Frysinger  <vapier@gentoo.org>
+
+	acl: include quote.h
+	* lib/copy-acl.c: Include quote.h.
+	* lib/set-acl.c: Likewise.
+
 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
 
 	fchownat, renameat, unlinkat: update statat dependencies
--- a/lib/copy-acl.c
+++ b/lib/copy-acl.c
@@ -23,6 +23,7 @@
 
 #include <errno.h>
 
+#include "quote.h"
 #include "error.h"
 #include "gettext.h"
 #define _(msgid) gettext (msgid)
--- a/lib/set-acl.c
+++ b/lib/set-acl.c
@@ -23,6 +23,7 @@
 
 #include <errno.h>
 
+#include "quote.h"
 #include "error.h"
 #include "gettext.h"
 #define _(msgid) gettext (msgid)