diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-02-02 16:03:51 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-02-02 16:03:51 +0000 |
commit | 2831c627740c80d4ea1187058b249e1d5b5e5c58 (patch) | |
tree | 6511951a73414547cf7a29c38b6058f9d946fefc | |
parent | 5ab7c2e3c1773612ea7a53504c04ebac3ad07c16 (diff) | |
download | samba-2831c627740c80d4ea1187058b249e1d5b5e5c58.tar.gz samba-2831c627740c80d4ea1187058b249e1d5b5e5c58.tar.bz2 samba-2831c627740c80d4ea1187058b249e1d5b5e5c58.zip |
line 1960 - call to atexit - address of higher order function killkids
not needed (address already specified).
lkcl
(This used to be commit c5ab2eb71afd2961dfb61da30984a8b0fc88e754)
-rw-r--r-- | source3/smbd/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 2d47816ff7..6ab6c76c4a 100644 --- a/source3/smbd/server.c +++ b/source3/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 */ |