projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
23d0437
)
Fixup the setsockopt usage message; missing OPTVAL.
Gisle Aas [Thu, 8 Dec 2005 09:56:22 +0000 (09:56 +0000)]
p4raw-id: //depot/perl@26300
ext/IO/lib/IO/Socket.pm
patch
|
blob
|
blame
|
history
diff --git
a/ext/IO/lib/IO/Socket.pm
b/ext/IO/lib/IO/Socket.pm
index
46504db
..
7e57bad
100644
(file)
--- a/
ext/IO/lib/IO/Socket.pm
+++ b/
ext/IO/lib/IO/Socket.pm
@@
-249,7
+249,7
@@
sub shutdown {
}
sub setsockopt {
- @_ == 4 or croak '$sock->setsockopt(LEVEL, OPTNAME)';
+ @_ == 4 or croak '$sock->setsockopt(LEVEL, OPTNAME, OPTVAL)';
setsockopt($_[0],$_[1],$_[2],$_[3]);
}