mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge 10.11 into 11.0
This commit is contained in:
@@ -2068,8 +2068,15 @@ get_one_option(const struct my_option *opt, const char *argument,
|
||||
case 'S':
|
||||
if (filename[0] == '\0')
|
||||
{
|
||||
/* Socket given on command line, switch protocol to use SOCKETSt */
|
||||
opt_protocol= MYSQL_PROTOCOL_SOCKET;
|
||||
/*
|
||||
Socket given on command line, switch protocol to use SOCKETSt
|
||||
Except on Windows if 'protocol= pipe' has been provided in
|
||||
the config file or command line.
|
||||
*/
|
||||
if (opt_protocol != MYSQL_PROTOCOL_PIPE)
|
||||
{
|
||||
opt_protocol= MYSQL_PROTOCOL_SOCKET;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 'I':
|
||||
|
Reference in New Issue
Block a user