diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-08-13 20:16:32 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-08-13 20:16:32 +0000 |
commit | b65fdef1ba6a9a0a27da724a8324a6f2804759cf (patch) | |
tree | 15dc38e670494b2653c6e1abbc8430cb385675ae /source3/include | |
parent | 9b41ada7c8f5eb77a1acf0eaf29a7d6f8cbaea36 (diff) | |
download | samba-b65fdef1ba6a9a0a27da724a8324a6f2804759cf.tar.gz samba-b65fdef1ba6a9a0a27da724a8324a6f2804759cf.tar.bz2 samba-b65fdef1ba6a9a0a27da724a8324a6f2804759cf.zip |
includes.h: Fixed S_IFLNK for old DEC ultrix.
ipc.c: Finally :-) fixed responses to NetServerEnum2 when SV_TYPE_ALL
given.
Jeremy (jallison@whistle.com)
(This used to be commit 1dc37c83506a434840a04c49e423cd9d2223fab4)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 35112ff70b..03c2d461e6 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -1105,6 +1105,10 @@ extern char *sys_errlist[]; #define S_ISDIR(x) ((S_IFDIR & x)!=0) #endif +#if !defined(S_ISLNK) && defined(S_IFLNK) +#define S_ISLNK(x) ((S_IFLNK & x)!=0) +#endif + #ifdef UFC_CRYPT #define crypt ufc_crypt #endif |