diff options
author | Michael Adam <obnox@samba.org> | 2012-06-16 00:26:26 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-21 08:27:32 +0200 |
commit | 73b200064fea77037f15cceeda303469b3e78624 (patch) | |
tree | baba4f462d2b86065daab4e5332db832830408e7 /source3/lib/dbwrap | |
parent | 0159344d4c55d9bea7f7938b6a3e750177fe6108 (diff) | |
download | samba-73b200064fea77037f15cceeda303469b3e78624.tar.gz samba-73b200064fea77037f15cceeda303469b3e78624.tar.bz2 samba-73b200064fea77037f15cceeda303469b3e78624.zip |
s3:util: rename procid_equal() to serverid_equal()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/lib/dbwrap')
-rw-r--r-- | source3/lib/dbwrap/dbwrap_watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/dbwrap/dbwrap_watch.c b/source3/lib/dbwrap/dbwrap_watch.c index ea75427ffc..701ac9d02f 100644 --- a/source3/lib/dbwrap/dbwrap_watch.c +++ b/source3/lib/dbwrap/dbwrap_watch.c @@ -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; |