diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-25 21:20:10 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-25 21:20:10 +0300 |
commit | fa27ad9025069fefe946399bc911df7d33d50139 (patch) | |
tree | f4a378e5c4a12d1d735ff95e378a82f208cbb5cb /sql/structs.h | |
parent | 337ab0c6ecbcd06ded02a30029357c1caa7e00a0 (diff) | |
download | mariadb-git-fa27ad9025069fefe946399bc911df7d33d50139.tar.gz |
Fix for a user management system that resources can be reset to zero
with a GRANT statement.
Diffstat (limited to 'sql/structs.h')
-rw-r--r-- | sql/structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/structs.h b/sql/structs.h index 75280b34715..00b9c6153fe 100644 --- a/sql/structs.h +++ b/sql/structs.h @@ -163,7 +163,7 @@ typedef struct st_lex_user { typedef struct user_resources { - uint questions, updates, connections; + uint questions, updates, connections, bits; } USER_RESOURCES; typedef struct user_conn { |