Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Porting/exclude_contrib.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@
# sorted.
##########################################################################
dXO3142iRNcbpIKO2qxc1o3lNX8+oOCoyG5si+Sb2Ck
FG0GLuuu5ntPQBJEp8JMrdZaAyzQ3qASGZxKgQIn2CA
Ply5itbfmwcKAhWTKCx0ujKk+8UivRDQzE64+EKSH5c
QvzD7VskxHgLvOy3GdB9zvcqWIH9uM347jNLQS8QfFs
3 changes: 2 additions & 1 deletion dist/IO/lib/IO/Socket/UNIX.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use IO::Socket;
use Carp;

our @ISA = qw(IO::Socket);
our $VERSION = "1.56";
our $VERSION = "1.57";

IO::Socket::UNIX->register_domain( AF_UNIX );

Expand Down Expand Up @@ -45,6 +45,7 @@ sub configure {
}
elsif(exists $arg->{Peer}) {
my $addr = sockaddr_un($arg->{Peer});
${*$sock}{'io_socket_peername'} = $arg->{Peer};
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is incorrect, it should be a sockaddr.

$sock->connect($addr) or
return undef;
}
Expand Down
Loading