1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r10237: fix parameter, how have I missed this...?

metze
(This used to be commit d02e1aa049)
This commit is contained in:
Stefan Metzmacher 2005-09-15 09:55:16 +00:00 committed by Gerald (Jerry) Carter
parent f77e859e48
commit 84951a4cee

View File

@ -365,7 +365,7 @@ static void ldapsrv_accept(struct stream_connection *c)
conn->tls = tls_init_server(ldapsrv_service->tls_params, c->socket,
c->event.fde, NULL, port != 389);
if (!conn->tls) {
ldapsrv_terminate_connection(c, "ldapsrv_accept: tls_init_server() failed");
ldapsrv_terminate_connection(conn, "ldapsrv_accept: tls_init_server() failed");
return;
}