diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-25 03:30:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:04:37 -0500 |
commit | 75ed4f7cc4d39b85cf6dba040cbf188fac3ed464 (patch) | |
tree | 95eb4af6fe56d721a934b02332f5b1274959f69d /source4/lib/socket | |
parent | 35a11f0e6132a48136500f10be31ac9291a4d25a (diff) | |
download | samba-75ed4f7cc4d39b85cf6dba040cbf188fac3ed464.tar.gz samba-75ed4f7cc4d39b85cf6dba040cbf188fac3ed464.tar.bz2 samba-75ed4f7cc4d39b85cf6dba040cbf188fac3ed464.zip |
r3183: moved the unlink of the messaging unixdom socket to the messaging destructor
(This used to be commit ab222b236a091d31b1f5f2cba150a11585ab5836)
Diffstat (limited to 'source4/lib/socket')
-rw-r--r-- | source4/lib/socket/socket_unix.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/source4/lib/socket/socket_unix.c b/source4/lib/socket/socket_unix.c index 038ce3b3b6..df929d92b4 100644 --- a/source4/lib/socket/socket_unix.c +++ b/source4/lib/socket/socket_unix.c @@ -71,15 +71,6 @@ static NTSTATUS unixdom_init(struct socket_context *sock) static void unixdom_close(struct socket_context *sock) { close(sock->fd); - /* if we were listening, then don't leave the socket lying - around in the filesystem */ - -#if 0 - /* FIXME - this doesn't work after fork(), etc */ - if (sock->private_data) { - unlink((const char *)sock->private_data); - } -#endif } static NTSTATUS unixdom_connect(struct socket_context *sock, |