diff options
author | Sujatha <sujatha.sivakumar@mariadb.com> | 2020-09-28 17:55:39 +0530 |
---|---|---|
committer | Sujatha <sujatha.sivakumar@mariadb.com> | 2020-09-28 17:55:39 +0530 |
commit | ce845b7a2fb3b86a1cc1a54a488ab7f16448d7c1 (patch) | |
tree | 767a910bb2d89a42a7ba3b05958340ec16d20b94 /sql-common | |
parent | 7edfb72efff18b7de7f22cd6dfd90b553e27c286 (diff) | |
parent | 6cbbd6bd96a8b5c97ec4d0b687aac29fb0f63a6a (diff) | |
download | mariadb-git-ce845b7a2fb3b86a1cc1a54a488ab7f16448d7c1.tar.gz |
Merge branch '10.3' into 10.4
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index a74a257ed8b..04ee00d6bea 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -1,5 +1,5 @@ /* Copyright (c) 2003, 2016, Oracle and/or its affiliates. - Copyright (c) 2009, 2017, MariaDB + Copyright (c) 2009, 2020, MariaDB This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2996,7 +2996,7 @@ CLI_MYSQL_REAL_CONNECT(MYSQL *mysql,const char *host, const char *user, /* New protocol with 16 bytes to describe server characteristics */ mysql->server_language=end[2]; mysql->server_status=uint2korr(end+3); - mysql->server_capabilities|= uint2korr(end+5) << 16; + mysql->server_capabilities|= ((unsigned) uint2korr(end+5)) << 16; pkt_scramble_len= end[7]; if (pkt_scramble_len < 0) { |