mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
Bug#27344 Total failure to start the server
- length($sockdir) >= 80 !!
This commit is contained in:
parent
fc992b0667
commit
c159836fdc
1 changed files with 1 additions and 1 deletions
|
@ -1050,7 +1050,7 @@ sub command_line_setup () {
|
||||||
# On some operating systems, there is a limit to the length of a
|
# On some operating systems, there is a limit to the length of a
|
||||||
# UNIX domain socket's path far below PATH_MAX, so try to avoid long
|
# UNIX domain socket's path far below PATH_MAX, so try to avoid long
|
||||||
# socket path names.
|
# socket path names.
|
||||||
$sockdir = tempdir(CLEANUP => 0) if ( length($sockdir) > 80 );
|
$sockdir = tempdir(CLEANUP => 0) if ( length($sockdir) >= 80 );
|
||||||
|
|
||||||
# Put this into a hash, will be a C struct
|
# Put this into a hash, will be a C struct
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue