projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9b60480
)
fix for undef as last arg to setsockopt
Graham Barr [Wed, 3 Jun 1998 11:22:19 +0000 (06:22 -0500)]
Message-ID: <
19980603112219
.B7638@asic.sc.ti.com>
p4raw-id: //depot/perl@1093
pp_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_sys.c
b/pp_sys.c
index
ad9eee1
..
1814a59
100644
(file)
--- a/
pp_sys.c
+++ b/
pp_sys.c
@@
-1968,7
+1968,7
@@
PP(pp_ssockopt)
buf = SvPV(sv, na);
len = na;
}
- else if (SvOK(sv)) {
+ else {
aint = (int)SvIV(sv);
buf = (char*)&aint;
len = sizeof(int);