summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-05-08 05:53:33 +0000
committerTim Potter <tpot@samba.org>2001-05-08 05:53:33 +0000
commit8fe76adb33bb7de19c8b2c8783dc6e3a3977bd8f (patch)
tree7c2793d2cf30a099301c223b12558e6a255073a8
parent335e41b5ca6c3372aa1005e3c80ca04572f37878 (diff)
downloadsamba-8fe76adb33bb7de19c8b2c8783dc6e3a3977bd8f.tar.gz
samba-8fe76adb33bb7de19c8b2c8783dc6e3a3977bd8f.tar.xz
samba-8fe76adb33bb7de19c8b2c8783dc6e3a3977bd8f.zip
Removed S_ISSOCK() macro as it's only used within winbind client code.
-rw-r--r--source/include/includes.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/source/include/includes.h b/source/include/includes.h
index 59883935882..9097d476528 100644
--- a/source/include/includes.h
+++ b/source/include/includes.h
@@ -960,16 +960,6 @@ int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
#define SHM_W 0200
#endif
-
-/* Some systems (SCO) treat UNIX domain sockets as FIFOs */
-
-#ifndef S_IFSOCK
-#define S_IFSOCK S_IFIFO
-#endif
-#ifndef S_ISSOCK
-#define S_ISSOCK(mode) ((mode & S_IFSOCK) == S_IFSOCK)
-#endif
-
#if HAVE_KERNEL_SHARE_MODES
#ifndef LOCK_MAND
#define LOCK_MAND 32 /* This is a mandatory flock */