diff options
author | monty@mysql.com <> | 2005-11-01 21:57:24 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-11-01 21:57:24 +0200 |
commit | f10399d77e9f74bdc8cff287519971e96ab109d4 (patch) | |
tree | 625cfc8e76ff16cb7b8bf42c3e61d03559be994f /sql/table.cc | |
parent | 72343cef756499950308b7a6e284d3554954aa95 (diff) | |
download | mariadb-git-f10399d77e9f74bdc8cff287519971e96ab109d4.tar.gz |
Add missing return
Compile max with --yassl instead of --with-openssl
Diffstat (limited to 'sql/table.cc')
-rw-r--r-- | sql/table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc index a18ff4397d1..0ea153fa1f2 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -2538,11 +2538,11 @@ bool st_table_list::prepare_security(THD *thd) tbl->table->grant= grant; } thd->security_ctx= save_security_ctx; - DBUG_RETURN(FALSE); #else while ((tbl= tb++)) tbl->grant.privilege= ~NO_ACCESS; #endif + DBUG_RETURN(FALSE); } |