summaryrefslogtreecommitdiff
path: root/source3/include/includes.h
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
commitae6e20300ce125a7922d2434520c439877a90881 (patch)
treee6811e94bf398abbfe5bd8ddaa62bae251af3834 /source3/include/includes.h
parente5500c4a759c2a6f7f7ec15617ef62bcf145a4a7 (diff)
downloadsamba-ae6e20300ce125a7922d2434520c439877a90881.tar.gz
samba-ae6e20300ce125a7922d2434520c439877a90881.tar.bz2
samba-ae6e20300ce125a7922d2434520c439877a90881.zip
Removed S_ISSOCK() macro as it's only used within winbind client code.
(This used to be commit 8fe76adb33bb7de19c8b2c8783dc6e3a3977bd8f)
Diffstat (limited to 'source3/include/includes.h')
-rw-r--r--source3/include/includes.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index 5988393588..9097d47652 100644
--- a/source3/include/includes.h
+++ b/source3/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 */