mirror of
https://github.com/MariaDB/server.git
synced 2026-04-23 08:45:33 +02:00
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.1-maint
into mysql.com:/usr/home/ram/work/bug21142/my41-bug21142 client/mysql.cc: Auto merged
This commit is contained in:
commit
1ba16a86c5
1 changed files with 2 additions and 2 deletions
|
|
@ -2629,7 +2629,7 @@ com_connect(String *buffer, char *line)
|
||||||
bzero(buff, sizeof(buff));
|
bzero(buff, sizeof(buff));
|
||||||
if (buffer)
|
if (buffer)
|
||||||
{
|
{
|
||||||
strmov(buff, line);
|
strmake(buff, line, sizeof(buff) - 1);
|
||||||
tmp= get_arg(buff, 0);
|
tmp= get_arg(buff, 0);
|
||||||
if (tmp && *tmp)
|
if (tmp && *tmp)
|
||||||
{
|
{
|
||||||
|
|
@ -2743,7 +2743,7 @@ com_use(String *buffer __attribute__((unused)), char *line)
|
||||||
char *tmp, buff[FN_REFLEN + 1];
|
char *tmp, buff[FN_REFLEN + 1];
|
||||||
|
|
||||||
bzero(buff, sizeof(buff));
|
bzero(buff, sizeof(buff));
|
||||||
strmov(buff, line);
|
strmake(buff, line, sizeof(buff) - 1);
|
||||||
tmp= get_arg(buff, 0);
|
tmp= get_arg(buff, 0);
|
||||||
if (!tmp || !*tmp)
|
if (!tmp || !*tmp)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue