From 62143543cedd4fc0257d09fa656391479505740b Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 5 May 2010 06:09:03 -0700 Subject: [PATCH] =?utf8?q?Fixed=20issue=20with=20return=20in=20a=20void=20?= =?utf8?q?function=20found=20by=20Bj=C3=B6rn=20JACKE=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Jeremy. --- source3/smbd/blocking.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/smbd/blocking.c b/source3/smbd/blocking.c index 83898a3098..9b20adfb89 100644 --- a/source3/smbd/blocking.c +++ b/source3/smbd/blocking.c @@ -709,7 +709,8 @@ void process_blocking_lock_queue(void) struct blocking_lock_record *blr, *next = NULL; if (sconn->allow_smb2) { - return process_blocking_lock_queue_smb2(); + process_blocking_lock_queue_smb2(); + return; } tv_curr = timeval_current(); -- 2.34.1