Commit 2d226292 authored by unknown's avatar unknown

Always return 0 inidcating that socket path would not be truncated when

running on windows. Apparently Cygwin tries to emulate UNIX Socket and thus
fails to create one.

parent 0a4ad7f3
......@@ -96,6 +96,8 @@ sub check_socket_path_length {
my ($path)= @_;
my $truncated= 0;
return 0 if IS_WINDOWS;
require IO::Socket::UNIX;
my $sock = new IO::Socket::UNIX
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment