summaryrefslogtreecommitdiffstats
path: root/source/lib/socket/socket_unix.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-10-25 03:36:00 +0000
committerAndrew Tridgell <tridge@samba.org>2004-10-25 03:36:00 +0000
commitc1bf37c8f39a2ae0c91bee3371f6470732a51e72 (patch)
treea9118b374e55991b01d63b21311d5f1802f36004 /source/lib/socket/socket_unix.c
parent98b425f99870743cd86f447d1d79efd881666eb0 (diff)
downloadsamba-c1bf37c8f39a2ae0c91bee3371f6470732a51e72.tar.gz
samba-c1bf37c8f39a2ae0c91bee3371f6470732a51e72.tar.xz
samba-c1bf37c8f39a2ae0c91bee3371f6470732a51e72.zip
r3184: don't setup socket options on unix domain sockets (our smb.conf socket options are really meant for tcp)
Diffstat (limited to 'source/lib/socket/socket_unix.c')
-rw-r--r--source/lib/socket/socket_unix.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/lib/socket/socket_unix.c b/source/lib/socket/socket_unix.c
index df929d92b4b..d75bb973fc4 100644
--- a/source/lib/socket/socket_unix.c
+++ b/source/lib/socket/socket_unix.c
@@ -249,7 +249,6 @@ static NTSTATUS unixdom_send(struct socket_context *sock, TALLOC_CTX *mem_ctx,
static NTSTATUS unixdom_set_option(struct socket_context *sock,
const char *option, const char *val)
{
- set_socket_options(sock->fd, option);
return NT_STATUS_OK;
}