summaryrefslogtreecommitdiff
path: root/lib/tdb/common/dump.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-10-23 13:51:03 +0200
committerStefan Metzmacher <metze@samba.org>2009-10-23 18:27:20 +0200
commit3b62e250c066f44d0ab08a7db037b6b4f74a914b (patch)
treef51002dff1175c7ce97902eeb36f909da3aab5d0 /lib/tdb/common/dump.c
parent4f8826ff7f4789c5b5f363b733a42053f72aa526 (diff)
downloadsamba-3b62e250c066f44d0ab08a7db037b6b4f74a914b.tar.gz
samba-3b62e250c066f44d0ab08a7db037b6b4f74a914b.tar.bz2
samba-3b62e250c066f44d0ab08a7db037b6b4f74a914b.zip
tdb: rename 'struct list_struct' into 'struct tdb_record'
metze
Diffstat (limited to 'lib/tdb/common/dump.c')
-rw-r--r--lib/tdb/common/dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tdb/common/dump.c b/lib/tdb/common/dump.c
index d1c902ddfd..bdcbfab139 100644
--- a/lib/tdb/common/dump.c
+++ b/lib/tdb/common/dump.c
@@ -30,7 +30,7 @@
static tdb_off_t tdb_dump_record(struct tdb_context *tdb, int hash,
tdb_off_t offset)
{
- struct list_struct rec;
+ struct tdb_record rec;
tdb_off_t tailer_ofs, tailer;
if (tdb->methods->tdb_read(tdb, offset, (char *)&rec,
@@ -95,7 +95,7 @@ int tdb_printfreelist(struct tdb_context *tdb)
int ret;
long total_free = 0;
tdb_off_t offset, rec_ptr;
- struct list_struct rec;
+ struct tdb_record rec;
if ((ret = tdb_lock(tdb, -1, F_WRLCK)) != 0)
return ret;