Thanks, I should have caught that. I pushed this fix: >From 4366d8200a044c899f4e92a4e32424d96b628720 Mon Sep 17 00:00:00 2001 From: Paul Eggert <[email protected]> Date: Tue, 30 Apr 2013 09:01:58 -0700 Subject: [PATCH] acl: include errno.h to get errno
Reported by Daiki Ueno in <http://lists.gnu.org/archive/html/bug-gnulib/2013-04/msg00073.html>. * lib/copy-acl.c, lib/set-acl.c: Include errno.h. --- ChangeLog | 7 +++++++ lib/copy-acl.c | 2 ++ lib/set-acl.c | 2 ++ 3 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2c99aa2..f44b450 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2013-04-30 Paul Eggert <[email protected]> + + acl: include errno.h to get errno + Reported by Daiki Ueno in + <http://lists.gnu.org/archive/html/bug-gnulib/2013-04/msg00073.html>. + * lib/copy-acl.c, lib/set-acl.c: Include errno.h. + 2013-04-29 Paul Eggert <[email protected]> tests: don't assume getdtablesize () <= 10000000 diff --git a/lib/copy-acl.c b/lib/copy-acl.c index bcc86b6..55799a8 100644 --- a/lib/copy-acl.c +++ b/lib/copy-acl.c @@ -21,6 +21,8 @@ #include "acl.h" +#include <errno.h> + #include "error.h" #include "gettext.h" #define _(msgid) gettext (msgid) diff --git a/lib/set-acl.c b/lib/set-acl.c index f41ad82..7600f60 100644 --- a/lib/set-acl.c +++ b/lib/set-acl.c @@ -21,6 +21,8 @@ #include "acl.h" +#include <errno.h> + #include "error.h" #include "gettext.h" #define _(msgid) gettext (msgid) -- 1.7.11.7
