In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/09a3ed31a73051acd8ed0511ea0d927d9660fd22?hp=86cb0d3084b80528a1362f4a6b091000965f9beb>

- Log -----------------------------------------------------------------
commit 09a3ed31a73051acd8ed0511ea0d927d9660fd22
Author: Jesse Vincent <[email protected]>
Date:   Sat Oct 10 16:48:38 2009 -0400

    Applied a patch from David Fifield to fix an error message in perlipc.pod
    
    Subject:    Comment doesn't match code in perlipc.pod.
    Date:       Thu, 30 Jul 2009 07:31:48 -0600
    To: [email protected]
    From:       David Fifield <[email protected]>
-----------------------------------------------------------------------

Summary of changes:
 pod/perlipc.pod |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/pod/perlipc.pod b/pod/perlipc.pod
index 77f0b6e..6424615 100644
--- a/pod/perlipc.pod
+++ b/pod/perlipc.pod
@@ -1129,7 +1129,7 @@ differ from the system on which it's being run:
        my $hisiaddr = inet_aton($host)     || die "unknown host";
        my $hispaddr = sockaddr_in($port, $hisiaddr);
        socket(SOCKET, PF_INET, SOCK_STREAM, $proto)   || die "socket: $!";
-       connect(SOCKET, $hispaddr)          || die "bind: $!";
+       connect(SOCKET, $hispaddr)          || die "connect: $!";
        my $rtime = '    ';
        read(SOCKET, $rtime, 4);
        close(SOCKET);

--
Perl5 Master Repository

Reply via email to