summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-07-04 16:54:04 +0200
committerVolker Lendecke <vl@samba.org>2010-07-05 11:06:23 +0200
commit300667e4a9f02104fc8759dd846ea41f400441bf (patch)
treed0795152861ba866c49778e59fc5f4a48b98e2cc /source3/lib/util.c
parent849f72b254ee52501ba46e8419938d3bf5e31900 (diff)
downloadsamba-300667e4a9f02104fc8759dd846ea41f400441bf.tar.gz
samba-300667e4a9f02104fc8759dd846ea41f400441bf.tar.bz2
samba-300667e4a9f02104fc8759dd846ea41f400441bf.zip
s3: Pass procid_self() explicitly to messaging_ctdbd_connection()
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 2a4d0501fe..dc243ecf1d 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1294,8 +1294,8 @@ bool process_exists(const struct server_id pid)
}
#ifdef CLUSTER_SUPPORT
- return ctdbd_process_exists(messaging_ctdbd_connection(), pid.vnn,
- pid.pid);
+ return ctdbd_process_exists(messaging_ctdbd_connection(procid_self()),
+ pid.vnn, pid.pid);
#else
return False;
#endif