emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112245: Provide definition of ACL_NO


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112245: Provide definition of ACL_NOT_WELL_SUPPORTED for MS-Windows.
Date: Sun, 07 Apr 2013 19:18:41 +0300
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112245
fixes bug: http://debbugs.gnu.org/13702
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sun 2013-04-07 19:18:41 +0300
message:
  Provide definition of ACL_NOT_WELL_SUPPORTED for MS-Windows.
  
   src/fileio.c (ACL_NOT_WELL_SUPPORTED): Define macro for WINDOWSNT.
modified:
  src/ChangeLog
  src/fileio.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-04-07 11:21:39 +0000
+++ b/src/ChangeLog     2013-04-07 16:18:41 +0000
@@ -1,3 +1,7 @@
+2013-04-07  Eli Zaretskii  <address@hidden>
+
+       * fileio.c (ACL_NOT_WELL_SUPPORTED): Define macro for WINDOWSNT.
+
 2013-04-07  Romain Francoise  <address@hidden>
 
        Ignore additional platform-specific ACL errors (Bug#13702).

=== modified file 'src/fileio.c'
--- a/src/fileio.c      2013-04-07 11:21:39 +0000
+++ b/src/fileio.c      2013-04-07 16:18:41 +0000
@@ -92,6 +92,8 @@
 #elif defined EOPNOTSUPP /* Tru64 NFS */
 #define ACL_NOT_WELL_SUPPORTED(Err)                                    \
   ((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY || 
(Err) == EOPNOTSUPP)
+#elif defined WINDOWSNT
+#define ACL_NOT_WELL_SUPPORTED(Err)  ((Err) == ENOTSUP)
 #else
 #define ACL_NOT_WELL_SUPPORTED(Err)                                    \
   ((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY)


reply via email to

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