From 2f53e17355b0d96af722ef6c1517fd91e8dbda0f Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Wed, 16 Nov 2005 08:45:21 +0000 Subject: [PATCH] 2005-11-16 Roland Illig * slcommon.c (_pSLsecure_issetugid): Made the #ifdef more readable. --- slang/ChangeLog | 5 +++++ slang/slcommon.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/slang/ChangeLog b/slang/ChangeLog index 662bcb1b1..74ce753e7 100644 --- a/slang/ChangeLog +++ b/slang/ChangeLog @@ -1,3 +1,8 @@ +2005-11-16 Roland Illig + + * slcommon.c (_pSLsecure_issetugid): Made the #ifdef more + readable. + 2005-11-15 Leonard den Ottolander * slcommon.c (_pSLsecure_issetugid): Remove dependency on glibc diff --git a/slang/slcommon.c b/slang/slcommon.c index a324d0cc6..c013e65e1 100644 --- a/slang/slcommon.c +++ b/slang/slcommon.c @@ -191,7 +191,7 @@ char *SLcalloc (unsigned int nelems, unsigned int len) return p; } -#if !defined(HAVE_ISSETUGID) && defined(__GLIBC__) && (__GLIBC__ >= 2) && 0 +#if 0 /* was: !defined(HAVE_ISSETUGID) && defined(__GLIBC__) && (__GLIBC__ >= 2) */ extern int __libc_enable_secure; # define HAVE___LIBC_ENABLE_SECURE 1 #endif