This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
88467a4
)
perlipc.pod: Fix typo
author
Steve Hay
<steve.m.hay@googlemail.com>
Tue, 26 Jan 2016 08:43:06 +0000
(08:43 +0000)
committer
Steve Hay
<steve.m.hay@googlemail.com>
Tue, 26 Jan 2016 08:43:06 +0000
(08:43 +0000)
pod/perlipc.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlipc.pod
b/pod/perlipc.pod
index
8effcf0
..
6be2763
100644
(file)
--- a/
pod/perlipc.pod
+++ b/
pod/perlipc.pod
@@
-964,7
+964,7
@@
or firewall machine), fill this in with your real address instead.
sub logmsg { print "$0 $$: @_ at ", scalar localtime(), "\n" }
my $port = shift || 2345;
- die "invalid port" unless
if
$port =~ /^ \d+ $/x;
+ die "invalid port" unless $port =~ /^ \d+ $/x;
my $proto = getprotobyname("tcp");