From: Eric Wong Date: Fri, 11 Mar 2016 21:59:42 +0000 (+0000) Subject: daemon: fixup usage of the '-l' switch with IP/INET6 sockets X-Git-Tag: v1.0.0~636 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=d5fce291ff67459ccf2939afea0ea6a1157869d8;p=public-inbox.git daemon: fixup usage of the '-l' switch with IP/INET6 sockets We need to ensure $sock_pkg is preserved outside of the loop. The variable passed to "for" or "foreach" is implicitly local and restores the previous value when the loop exits. This is documented in the perlsyn manpage in the "Foreach Loops" section. Fixes: ea1b6cbd422b ("daemon: allow using IO::Socket::IP over INET6") --- diff --git a/lib/PublicInbox/Daemon.pm b/lib/PublicInbox/Daemon.pm index fcb1a3d3..c6fb62bf 100644 --- a/lib/PublicInbox/Daemon.pm +++ b/lib/PublicInbox/Daemon.pm @@ -69,7 +69,8 @@ sub daemon_prepare ($) { $o{Local} = delete $o{Peer}; } else { # both work for IPv4, too - for $sock_pkg (qw(IO::Socket::IP IO::Socket::INET6)) { + for (qw(IO::Socket::IP IO::Socket::INET6)) { + $sock_pkg = $_; eval "use $sock_pkg"; $@ or last; } @@ -79,7 +80,7 @@ sub daemon_prepare ($) { $o{Listen} = 1024; my $prev = umask 0000; my $s = eval { $sock_pkg->new(%o) }; - warn "error binding $l: $!\n" unless $s; + warn "error binding $l: $! ($@)\n" unless $s; umask $prev; if ($s) {