bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] qacl: new module, broken out from the acl module


From: Paul Eggert
Subject: Re: [PATCH] qacl: new module, broken out from the acl module
Date: Tue, 30 Apr 2013 09:07:12 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130311 Thunderbird/17.0.4

Thanks, I should have caught that.  I pushed this fix:

>From 4366d8200a044c899f4e92a4e32424d96b628720 Mon Sep 17 00:00:00 2001
From: Paul Eggert <address@hidden>
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  <address@hidden>
+
+       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  <address@hidden>
 
        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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]