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

stub for ctdb_call

(This used to be ctdb commit d707ad000c4f37686a0698f2c3047bbbaa7e875b)
This commit is contained in:
Andrew Tridgell 2006-11-18 13:46:38 +11:00
parent 2f96398da1
commit bbd6b83c63

View File

@ -333,3 +333,13 @@ int ctdb_start(struct ctdb_context *ctdb)
return 0; return 0;
} }
/*
make a remote ctdb call
*/
int ctdb_call(struct ctdb_context *ctdb, TDB_DATA key, int call_id,
TDB_DATA *call_data, TDB_DATA *reply_data)
{
printf("ctdb_call not implemented\n");
return -1;
}