--------------------- PatchSet 5393 Date: 2007/08/20 04:36:13 Author: amosjeffries Branch: docs Tag: (none) Log: Fix bad typing - detected by doxygen. Members: src/authenticate.cc:1.21->1.21.2.1 Index: squid3/src/authenticate.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/authenticate.cc,v retrieving revision 1.21 retrieving revision 1.21.2.1 diff -u -r1.21 -r1.21.2.1 --- squid3/src/authenticate.cc 28 Apr 2007 22:51:48 -0000 1.21 +++ squid3/src/authenticate.cc 20 Aug 2007 04:36:13 -0000 1.21.2.1 @@ -1,6 +1,6 @@ /* - * $Id: authenticate.cc,v 1.21 2007/04/28 22:51:48 squidadm Exp $ + * $Id: authenticate.cc,v 1.21.2.1 2007/08/20 04:36:13 amosjeffries Exp $ * * DEBUG: section 29 Authenticator * AUTHOR: Robert Collins @@ -153,19 +153,19 @@ AuthUserHashPointer::removeFromCache(void *usernamehash_p) { AuthUserHashPointer *usernamehash = static_cast(usernamehash_p); - auth_user_t *auth_user = usernamehash->auth_user; + AuthUser *auth_user = usernamehash->auth_user; if ((authenticateAuthUserInuse(auth_user) - 1)) debugs(29, 1, "AuthUserHashPointer::removeFromCache: entry in use - not freeing"); auth_user->unlock(); - /* TODO: change behaviour - we remove from the auth user list here, and then unlock, and the + /** \todo change behaviour - we remove from the auth user list here, and then unlock, and the * delete ourselves. */ } -AuthUserHashPointer::AuthUserHashPointer (auth_user_t * anAuth_user): +AuthUserHashPointer::AuthUserHashPointer (AuthUser * anAuth_user): auth_user (anAuth_user) { key = (void *)anAuth_user->username(); @@ -173,9 +173,7 @@ hash_join(proxy_auth_username_cache, (hash_link *) this); /* lock for presence in the cache */ - auth_user->lock() - - ; + auth_user->lock(); } AuthUser *