1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

s4-cluster Use task_id instead of id2 to clarify server_id structure

This seems a clearer and more acceptable name.

Andrew Bartlett

Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
Andrew Bartlett
2011-05-08 18:28:17 +02:00
parent 8d4a8389bb
commit 8d803d5a0a
5 changed files with 14 additions and 14 deletions

View File

@ -50,10 +50,10 @@ static void cluster_init(void)
/*
create a server_id for the local node
*/
struct server_id cluster_id(uint64_t id, uint32_t id2)
struct server_id cluster_id(uint64_t pid, uint32_t task_id)
{
cluster_init();
return ops->cluster_id(ops, id, id2);
return ops->cluster_id(ops, pid, task_id);
}