From 1a3f50559e06c9dc45556c2c52d68a23c05d7e41 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 5 May 2008 15:06:39 +0200 Subject: Revert "Fix allocation of conn->vuid_cache entries" This reverts commit 50c891d3dfb75c9f607f7ad2a578aa3ba5d91988. There's more to this code -- sorry for the spam (This used to be commit 6e0e0cb8dd6f57de36c041e2ba4b82feeb357ce8) --- source3/smbd/uid.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index 343a0cf490..ffa643a8f5 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -123,9 +123,9 @@ static bool check_user_ok(connection_struct *conn, user_struct *vuser,int snum) return False; } - i = conn->vuid_cache.entries; - conn->vuid_cache.entries = - (conn->vuid_cache.entries + 1) % VUID_CACHE_SIZE; + i = conn->vuid_cache.entries % VUID_CACHE_SIZE; + if (conn->vuid_cache.entries < VUID_CACHE_SIZE) + conn->vuid_cache.entries++; ent = &conn->vuid_cache.array[i]; ent->vuid = vuser->vuid; -- cgit