summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2001-03-19 18:31:44 -0800
committerTim Rice <tim@multitalents.net>2001-03-19 18:31:44 -0800
commitd14d7021a14fd45705bd1f4833e2e63829c04449 (patch)
treebd2c7b1a329f7b7db52946e673955602b6ae444d
parent82e7ae5bceb636ecd52189f6ec63fd3db108cd85 (diff)
change S_ISLNK macro to work for UnixWare 2.03
-rw-r--r--ChangeLog4
-rw-r--r--defines.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e07c07911..adc3faae8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,8 @@
11 version 2.5.2 11 version 2.5.2
12 - (djm) Update RPM spec version 12 - (djm) Update RPM spec version
13 - (djm) Release 2.5.2p1 13 - (djm) Release 2.5.2p1
14- tim@mindrot.org 2001/03/19 18:33:47 [defines.h]
15 change S_ISLNK macro to work for UnixWare 2.03
14 16
1520010319 1720010319
16 - (djm) Seed PRNG at startup, rather than waiting for arc4random calls to 18 - (djm) Seed PRNG at startup, rather than waiting for arc4random calls to
@@ -4641,4 +4643,4 @@
4641 - Wrote replacements for strlcpy and mkdtemp 4643 - Wrote replacements for strlcpy and mkdtemp
4642 - Released 1.0pre1 4644 - Released 1.0pre1
4643 4645
4644$Id: ChangeLog,v 1.991 2001/03/19 22:30:50 djm Exp $ 4646$Id: ChangeLog,v 1.992 2001/03/20 02:31:44 tim Exp $
diff --git a/defines.h b/defines.h
index 29c46a620..7f8889351 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.60 2001/03/19 03:12:26 mouring Exp $ */ 4/* $Id: defines.h,v 1.61 2001/03/20 02:31:45 tim Exp $ */
5 5
6/* Some platforms need this for the _r() functions */ 6/* Some platforms need this for the _r() functions */
7#if !defined(_REENTRANT) && !defined(SNI) 7#if !defined(_REENTRANT) && !defined(SNI)
@@ -108,7 +108,7 @@ enum
108#endif /* S_ISREG */ 108#endif /* S_ISREG */
109 109
110#ifndef S_ISLNK 110#ifndef S_ISLNK
111# define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK)) 111# define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
112#endif /* S_ISLNK */ 112#endif /* S_ISLNK */
113 113
114#ifndef S_IXUSR 114#ifndef S_IXUSR