summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-05-07 15:51:42 +0200
committerVolker Lendecke <vl@samba.org>2008-05-10 11:17:00 +0200
commitc881c866d656bacb30180b574f3634db26deb37a (patch)
tree6040f06a863feab0042a24a1cd9638580d3329c5 /source3/include
parent322896f8dd9e7d92fe677178bd131fcfc09319f2 (diff)
downloadsamba-c881c866d656bacb30180b574f3634db26deb37a.tar.gz
samba-c881c866d656bacb30180b574f3634db26deb37a.tar.bz2
samba-c881c866d656bacb30180b574f3634db26deb37a.zip
Next try at making the vuid cache circular
Jeremy, please check! (This used to be commit a34f73521712e3820d417f0d9ed811723b7681d6)
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/smb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index c7a13fb3a0..dd8513f704 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -532,7 +532,7 @@ struct vuid_cache_entry {
};
struct vuid_cache {
- unsigned int entries;
+ unsigned int next_entry;
struct vuid_cache_entry array[VUID_CACHE_SIZE];
};