summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2007-04-05 03:22:08 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:49:48 -0500
commit7196090bfd73ab64fd0095ce3ed612bc7978a810 (patch)
treea5ca8b246830ad3d8ec79db3614d8a8c062a499b /source4
parentcb04f015eee8da5efa8f6fd2fb8e6493e3e7aa9b (diff)
downloadsamba-7196090bfd73ab64fd0095ce3ed612bc7978a810.tar.gz
samba-7196090bfd73ab64fd0095ce3ed612bc7978a810.tar.bz2
samba-7196090bfd73ab64fd0095ce3ed612bc7978a810.zip
r22081: transaction_brlock() should be static
thanks to Ted T'so for pointing this out (This used to be commit 6921f2f7093bbb6c236f16947072026303e58439)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/tdb/common/transaction.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/tdb/common/transaction.c b/source4/lib/tdb/common/transaction.c
index eb296206f9..a592c66039 100644
--- a/source4/lib/tdb/common/transaction.c
+++ b/source4/lib/tdb/common/transaction.c
@@ -358,8 +358,8 @@ static int transaction_expand_file(struct tdb_context *tdb, tdb_off_t size,
/*
brlock during a transaction - ignore them
*/
-int transaction_brlock(struct tdb_context *tdb, tdb_off_t offset,
- int rw_type, int lck_type, int probe, size_t len)
+static int transaction_brlock(struct tdb_context *tdb, tdb_off_t offset,
+ int rw_type, int lck_type, int probe, size_t len)
{
return 0;
}