In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/6787cb424a1db97097c16697bf94ab2589625788?hp=7aea98f9b70be7fb4e6f77b2f635506d97cb4195>

- Log -----------------------------------------------------------------
commit 6787cb424a1db97097c16697bf94ab2589625788
Author: Nicholas Clark <[email protected]>
Date:   Wed Oct 20 17:06:37 2010 +0100

    In Fcntl.xs, correct the conditional compilation of S_ISENFMT.
    
    Fixes a bug in 96d24b8ce2ce0411.
-----------------------------------------------------------------------

Summary of changes:
 ext/Fcntl/Fcntl.xs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ext/Fcntl/Fcntl.xs b/ext/Fcntl/Fcntl.xs
index 33c3cf9..d650994 100644
--- a/ext/Fcntl/Fcntl.xs
+++ b/ext/Fcntl/Fcntl.xs
@@ -119,7 +119,7 @@ BOOT:
         cv = newXS("Fcntl::S_ISWHT", XS_Fcntl_S_ISREG, file);
         XSANY.any_i32 = S_IFWHT;
 #endif
-#ifdef S_IFENFMT
+#ifdef S_ENFMT
         cv = newXS("Fcntl::S_ISENFMT", XS_Fcntl_S_ISREG, file);
         XSANY.any_i32 = S_ENFMT;
 #endif

--
Perl5 Master Repository

Reply via email to