diff options
author | Jeremy Allison <jra@samba.org> | 2012-12-20 14:42:55 -0800 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-01-09 15:28:45 +1100 |
commit | 7d90ae123af115bdcb1cdcd025cf73fdbf22b142 (patch) | |
tree | ef8e07039ffc349704c41a71c870c352c6057c6e /source3/modules | |
parent | 5e483ab14785faf5bc011e36ac07646a624c3962 (diff) | |
download | samba-7d90ae123af115bdcb1cdcd025cf73fdbf22b142.tar.gz samba-7d90ae123af115bdcb1cdcd025cf73fdbf22b142.tar.bz2 samba-7d90ae123af115bdcb1cdcd025cf73fdbf22b142.zip |
Clean up struct connection_struct, make struct vuid_cache a pointer not inline.
Change VFS ABI to 31 for 4.1.0.
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_readonly.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_readonly.c b/source3/modules/vfs_readonly.c index 7919dbc78b..f75db093cc 100644 --- a/source3/modules/vfs_readonly.c +++ b/source3/modules/vfs_readonly.c @@ -82,12 +82,12 @@ static int readonly_connect(vfs_handle_struct *handle, /* Wipe out the VUID cache. */ for (i=0; i< VUID_CACHE_SIZE; i++) { - struct vuid_cache_entry *ent = &conn->vuid_cache.array[i]; + struct vuid_cache_entry *ent = &conn->vuid_cache->array[i]; ent->vuid = UID_FIELD_INVALID; TALLOC_FREE(ent->session_info); ent->read_only = false; } - conn->vuid_cache.next_entry = 0; + conn->vuid_cache->next_entry = 0; } return 0; |