summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-02-02 16:03:51 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-02-02 16:03:51 +0000
commitc5ab2eb71afd2961dfb61da30984a8b0fc88e754 (patch)
tree94115ff6cd39a150f08a7d14144f971019c5a4d6 /source
parent8d6d31c002f67b6378fe060c9af9cecce51d4883 (diff)
downloadsamba-c5ab2eb71afd2961dfb61da30984a8b0fc88e754.tar.gz
samba-c5ab2eb71afd2961dfb61da30984a8b0fc88e754.tar.xz
samba-c5ab2eb71afd2961dfb61da30984a8b0fc88e754.zip
line 1960 - call to atexit - address of higher order function killkids
not needed (address already specified). lkcl
Diffstat (limited to 'source')
-rw-r--r--source/smbd/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/server.c b/source/smbd/server.c
index 2d47816ff76..6ab6c76c4af 100644
--- a/source/smbd/server.c
+++ b/source/smbd/server.c
@@ -1957,7 +1957,7 @@ static BOOL open_sockets(BOOL is_daemon,int port)
}
if(atexit_set == 0)
- atexit(&killkids);
+ atexit(killkids);
/* now accept incoming connections - forking a new process
for each incoming connection */