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

r23316: Ouch... This would not have run in production without cluster code

anyway.
(This used to be commit ca1d0ff03d)
This commit is contained in:
Volker Lendecke 2007-06-03 19:56:41 +00:00 committed by Gerald (Jerry) Carter
parent 5ddcf95651
commit 86f0e0b3de

View File

@ -1721,8 +1721,8 @@ static void brl_revalidate_collect(struct file_id id, struct server_id pid,
static int compare_procids(const void *p1, const void *p2)
{
const struct server_id *i1 = (struct server_id *)i1;
const struct server_id *i2 = (struct server_id *)i2;
const struct server_id *i1 = (struct server_id *)p1;
const struct server_id *i2 = (struct server_id *)p2;
if (i1->pid < i2->pid) return -1;
if (i2->pid > i2->pid) return 1;