1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-23 20:59:10 +03:00

s3:util: rename procid_equal() to serverid_equal()

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Michael Adam
2012-06-16 00:26:26 +02:00
committed by Stefan Metzmacher
parent 0159344d4c
commit 73b200064f
16 changed files with 27 additions and 27 deletions

View File

@ -166,7 +166,7 @@ static NTSTATUS dbwrap_record_del_watcher(TDB_DATA w_key, struct server_id id)
num_ids = value.dsize / sizeof(struct server_id);
for (i=0; i<num_ids; i++) {
if (procid_equal(&id, &ids[i])) {
if (serverid_equal(&id, &ids[i])) {
ids[i] = ids[num_ids-1];
value.dsize -= sizeof(struct server_id);
break;