whoot, broke the build >:\

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40413
This commit is contained in:
David Anderson 2007-01-29 07:01:26 +00:00
parent 52b45354e8
commit 4299828211
3 changed files with 7 additions and 6 deletions

View File

@ -822,8 +822,8 @@ void AdminCache::DumpAdminCache(int cache_flags, bool rebuild)
} }
/* If we only requested an admin rebuild, re-use the internal memory */ /* If we only requested an admin rebuild, re-use the internal memory */
if ((cache_flags & ADMIN_CACHE_ADMINS) && if (((cache_flags & ADMIN_CACHE_ADMINS) == ADMIN_CACHE_ADMINS)
!(cache_flags & ADMIN_CACHE_GROUPS)) && (cache_flags & (1<<2) != (1<<2)))
{ {
InvalidateAdminCache(true); InvalidateAdminCache(true);
} }

View File

@ -1,4 +1,5 @@
/** /**
* vim: set ts=4 :
* =============================================================== * ===============================================================
* SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved. * SourceMod (C)2004-2007 AlliedModders LLC. All rights reserved.
* =============================================================== * ===============================================================
@ -61,7 +62,7 @@ struct UserAuth
struct AdminUser struct AdminUser
{ {
int magic; /* Magic flag, for memory validation */ uint32_t magic; /* Magic flag, for memory validation */
bool flags[AdminFlags_TOTAL]; /* Base flags */ bool flags[AdminFlags_TOTAL]; /* Base flags */
bool eflags[AdminFlags_TOTAL]; /* Effective flags */ bool eflags[AdminFlags_TOTAL]; /* Effective flags */
int nameidx; /* Name index */ int nameidx; /* Name index */

View File

@ -3,9 +3,9 @@
#ifndef _INCLUDE_SVN_VERSION_H_ #ifndef _INCLUDE_SVN_VERSION_H_
#define _INCLUDE_SVN_VERSION_H_ #define _INCLUDE_SVN_VERSION_H_
#define SVN_REVISION 395 #define SVN_REVISION 403
#define SVN_REVISION_STRING "395" #define SVN_REVISION_STRING "403"
#define SVN_FILE_VERSION 1,0,0,395 #define SVN_FILE_VERSION 1,0,0,403
#endif //_INCLUDE_SVN_VERSION_H_ #endif //_INCLUDE_SVN_VERSION_H_