diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-04-17 17:07:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:26 -0500 |
commit | 123e721590ef604bfd7fc1a07aaed3bdefa5f16f (patch) | |
tree | 73c696a63ec616fb576a884b34abcba2a0b4b3ce /source3/lib/tdb/common/freelistcheck.c | |
parent | 6f9f5bd745b594e63c0b982967a03620e91999a5 (diff) | |
download | samba-123e721590ef604bfd7fc1a07aaed3bdefa5f16f.tar.gz samba-123e721590ef604bfd7fc1a07aaed3bdefa5f16f.tar.bz2 samba-123e721590ef604bfd7fc1a07aaed3bdefa5f16f.zip |
r22317: add tdb_ prefix to non static function
metze
(This used to be commit 56e31d60c672689e934fbed2794c7c54cf874b11)
Diffstat (limited to 'source3/lib/tdb/common/freelistcheck.c')
-rw-r--r-- | source3/lib/tdb/common/freelistcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/tdb/common/freelistcheck.c b/source3/lib/tdb/common/freelistcheck.c index 63d2dbadc2..19368f6ad6 100644 --- a/source3/lib/tdb/common/freelistcheck.c +++ b/source3/lib/tdb/common/freelistcheck.c @@ -88,7 +88,7 @@ int tdb_validate_freelist(struct tdb_context *tdb, int *pnum_entries) goto fail; } - if (rec_free_read(tdb, rec_ptr, &rec) == -1) { + if (tdb_rec_free_read(tdb, rec_ptr, &rec) == -1) { goto fail; } |