summaryrefslogtreecommitdiffstats
path: root/ctdb/common/ctdb_message.c
diff options
context:
space:
mode:
authorRonnie sahlberg <ronniesahlberg@gmail.com>2007-04-12 15:46:50 +1000
committerRonnie sahlberg <ronniesahlberg@gmail.com>2007-04-12 15:46:50 +1000
commit35ffefb01f19448545c7273536006270a44919a2 (patch)
tree180a0a28d8b23e196f4ce6b29af55de971eb3483 /ctdb/common/ctdb_message.c
parent8bd2faf771d8e4521cb15e52b265418bd8fe727b (diff)
downloadsamba-35ffefb01f19448545c7273536006270a44919a2.tar.gz
samba-35ffefb01f19448545c7273536006270a44919a2.tar.xz
samba-35ffefb01f19448545c7273536006270a44919a2.zip
initial support for two new pdus for the domain socket to do fetch_lock
no locking is yet done and the store_unlock call is still missing the ./tests/fetch.sh --daemon test fails with parent process dying which needs to be investigated. (This used to be ctdb commit 7d7141c968950a8856f1be79871932b688bfb07f)
Diffstat (limited to 'ctdb/common/ctdb_message.c')
-rw-r--r--ctdb/common/ctdb_message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/common/ctdb_message.c b/ctdb/common/ctdb_message.c
index ebba1d8faa2..0ee77f252b6 100644
--- a/ctdb/common/ctdb_message.c
+++ b/ctdb/common/ctdb_message.c
@@ -42,7 +42,7 @@ static int ctdb_dispatch_message(struct ctdb_context *ctdb, uint32_t srvid, TDB_
if (ml->srvid == srvid) break;
}
if (ml == NULL) {
- printf("no msg handler for srvid=%u\n", srvid);
+ printf("daemon vnn:%d no msg handler for srvid=%u\n", ctdb_get_vnn(ctdb), srvid);
/* no registered message handler */
return -1;
}