diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-12-07 10:49:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:23 -0500 |
commit | 97a00e7df87fb598157446064f8a94b31f378a47 (patch) | |
tree | 236488d1933e3878bb631b704ae098d7a5671a8f | |
parent | 1c6de687f1acdb5c361a620ac206aec7ef166733 (diff) | |
download | samba-97a00e7df87fb598157446064f8a94b31f378a47.tar.gz samba-97a00e7df87fb598157446064f8a94b31f378a47.tar.bz2 samba-97a00e7df87fb598157446064f8a94b31f378a47.zip |
r20063: Fix a missing protoype warning in freelistcheck.c
(This used to be commit 2fdfc54e7eebc68c81ad5f3fa8d0607bd3b579c5)
-rw-r--r-- | source3/tdb/common/tdb_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/tdb/common/tdb_private.h b/source3/tdb/common/tdb_private.h index cd57365434..1b45481f97 100644 --- a/source3/tdb/common/tdb_private.h +++ b/source3/tdb/common/tdb_private.h @@ -198,5 +198,7 @@ tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, in struct list_struct *rec); void tdb_io_init(struct tdb_context *tdb); int tdb_expand(struct tdb_context *tdb, tdb_off_t size); +int rec_free_read(struct tdb_context *tdb, tdb_off_t off, + struct list_struct *rec); |