diff options
author | unknown <df@kahlann.erinye.com> | 2007-01-22 16:32:57 +0100 |
---|---|---|
committer | unknown <df@kahlann.erinye.com> | 2007-01-22 16:32:57 +0100 |
commit | 4f69569dfa77e9115418ce4b1982ec00a106a660 (patch) | |
tree | 8fd1eb850c5fc48334e2f43cd46ce2f698968eee /mysql-test | |
parent | 747ec6f9046ea18ba687e5f878762d342d36e1dc (diff) | |
download | mariadb-git-4f69569dfa77e9115418ce4b1982ec00a106a660.tar.gz |
after-merge fix
Diffstat (limited to 'mysql-test')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 8cb33f9aaac..436030383e1 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1046,7 +1046,7 @@ sub command_line_setup () { # 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 # socket path names. - $sockdir = tempdir(CLEANUP => 1) if ( length($sockdir) > 80 ); + $sockdir = tempdir(CLEANUP => 0) if ( length($sockdir) > 80 ); # Put this into a hash, will be a C struct |