1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

some last minute Windows compile fixes and makefile corrections

This commit is contained in:
reggie@fedora.(none)
2005-09-15 14:32:01 -05:00
parent d8bd92895d
commit 66e6453e2a
10 changed files with 23 additions and 20 deletions

View File

@ -1473,7 +1473,7 @@ bool is_acl_user(const char *host, const char *user)
{
bool res;
VOID(pthread_mutex_lock(&acl_cache->lock));
res= find_acl_user(host, user, TRUE);
res= find_acl_user(host, user, TRUE) != NULL;
VOID(pthread_mutex_unlock(&acl_cache->lock));
return res;
}