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

tdbtool: avoid using c++ reserved words.

Guenther
This commit is contained in:
Günther Deschner 2009-12-17 00:13:23 +01:00
parent eb7ff9220d
commit a23084e1e8

View File

@ -538,9 +538,9 @@ static void next_record(TDB_CONTEXT *the_tdb, TDB_DATA *pkey)
print_rec(the_tdb, *pkey, dbuf, NULL);
}
static int count(TDB_DATA key, TDB_DATA data, void *private)
static int count(TDB_DATA key, TDB_DATA data, void *private_data)
{
(*(unsigned int *)private)++;
(*(unsigned int *)private_data)++;
return 0;
}