diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-16 20:25:57 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-16 20:25:57 +0100 |
commit | b0950557f90129b5cd51faf74dbf5d58a8f4d6b9 (patch) | |
tree | cbfc25b9687718477cc7e7d697b79537739bb6ee /source3/lib | |
parent | 04b2a9e80a8c35e37faf2e0a8e54efb9a084f2e3 (diff) | |
download | samba-b0950557f90129b5cd51faf74dbf5d58a8f4d6b9.tar.gz samba-b0950557f90129b5cd51faf74dbf5d58a8f4d6b9.tar.bz2 samba-b0950557f90129b5cd51faf74dbf5d58a8f4d6b9.zip |
Fix a missing prototype warning
(This used to be commit 871cee04f26da97756804b38acfd366b6011dc9e)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/tdb/common/tdb_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/tdb/common/tdb_private.h b/source3/lib/tdb/common/tdb_private.h index 63a6d04e72..dd69903015 100644 --- a/source3/lib/tdb/common/tdb_private.h +++ b/source3/lib/tdb/common/tdb_private.h @@ -178,6 +178,7 @@ struct tdb_context { int tdb_munmap(struct tdb_context *tdb); void tdb_mmap(struct tdb_context *tdb); int tdb_lock(struct tdb_context *tdb, int list, int ltype); +int tdb_lock_nonblock(struct tdb_context *tdb, int list, int ltype); int tdb_unlock(struct tdb_context *tdb, int list, int ltype); int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset, int rw_type, int lck_type, int probe, size_t len); int tdb_transaction_lock(struct tdb_context *tdb, int ltype); |