From fef617c31bd4a8be09449d6bc726c729ae758423 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 17 Oct 2004 02:55:47 +0000 Subject: r3012: added initial support for byte range locking in the posix vfs. This is enough for us to pass locktest, but does not yet support lock timeouts and some of the other esoteric features. (This used to be commit 58a92abd88f190bc60894a68e0528e95ae33fe39) --- source4/smbd/process_thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/smbd/process_thread.c') diff --git a/source4/smbd/process_thread.c b/source4/smbd/process_thread.c index 55688f85e8..85f30c9ddd 100644 --- a/source4/smbd/process_thread.c +++ b/source4/smbd/process_thread.c @@ -79,7 +79,7 @@ static void thread_accept_connection(struct event_context *ev, struct fd_event * return; } - conn = server_setup_connection(ev, server_socket, sock, t); + conn = server_setup_connection(ev, server_socket, sock, t, pthread_self()); if (!conn) { DEBUG(0,("server_setup_connection(ev, server_socket, sock, t) failed\n")); event_context_destroy(ev); -- cgit