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

s3: Fix g_lock_lock after the select/poll conversion

Without clustering we don't have an fd to listen on, and sys_poll
needs one element of space

Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Wed Mar 30 18:36:50 CEST 2011 on sn-devel-104
This commit is contained in:
Volker Lendecke 2011-03-30 16:38:31 +02:00 committed by Volker Lendecke
parent 220db5aad6
commit 8f4e39f6f7

View File

@ -397,7 +397,7 @@ NTSTATUS g_lock_lock(struct g_lock_ctx *ctx, const char *name,
status = NT_STATUS_NO_MEMORY;
break;
}
num_pollfds = 1;
num_pollfds = 0;
#ifdef CLUSTER_SUPPORT
if (lp_clustering()) {