From e64dfdcc71e17f21419f24b3f2b32d477b4cea1e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 29 Oct 2010 16:20:22 +1100 Subject: 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 --- source3/nmbd/nmbd.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'source3/nmbd') 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); } -- cgit