diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-10-29 16:20:22 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-11-02 04:36:04 +0000 |
commit | e64dfdcc71e17f21419f24b3f2b32d477b4cea1e (patch) | |
tree | 30225acf32ddd4ba59e7f8557f7c8124493d5cd0 /source3/nmbd | |
parent | d9f67eebf621adacf5514c7ba1ed17b4953db762 (diff) | |
download | samba-e64dfdcc71e17f21419f24b3f2b32d477b4cea1e.tar.gz samba-e64dfdcc71e17f21419f24b3f2b32d477b4cea1e.tar.bz2 samba-e64dfdcc71e17f21419f24b3f2b32d477b4cea1e.zip |
s3-debug Convert from x_file to real file descriptors.
X_FILE does not gain us anything in this use case, we want our log
messages on disk, not in a buffer, and we don't gain anything from the
X_FILE api. I discussed the matter with tridge, who feels that to use
FILE in the first place was a mistake, and that X_FILE isn't any
better, but was a stop-gap to avoid issues on solaris.
Andrew Bartlett
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index e93ff82333..2bae5f7b27 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -1027,8 +1027,6 @@ static bool open_sockets(bool isdaemon, int port) TALLOC_FREE(frame); process(); - debug_close_dbf(); - kill_async_dns_child(); return(0); } |