summaryrefslogtreecommitdiffstats
path: root/ext/socket
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-07 01:04:07 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-07 01:04:07 +0000
commit9a3705a623e477727cfd23bd0920730db28c5594 (patch)
tree37fbde058ae91782f96b724c6ff82497e0eadd41 /ext/socket
parent337b951529da8f05c6755332c65907ee5783a17f (diff)
downloadruby-9a3705a623e477727cfd23bd0920730db28c5594.tar.gz
ruby-9a3705a623e477727cfd23bd0920730db28c5594.tar.xz
ruby-9a3705a623e477727cfd23bd0920730db28c5594.zip
* ext/socket/extconf.rb: useless assignment removed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket')
-rw-r--r--ext/socket/extconf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/socket/extconf.rb b/ext/socket/extconf.rb
index 5cdc949d8..0fcb39269 100644
--- a/ext/socket/extconf.rb
+++ b/ext/socket/extconf.rb
@@ -195,8 +195,8 @@ have_header("netinet/tcp.h") if not /cygwin/ =~ RUBY_PLATFORM # for cygwin 1.1.5
have_header("netinet/udp.h")
if have_func("sendmsg") | have_func("recvmsg")
- have_struct_member('struct msghdr', 'msg_control', header=['sys/types.h', 'sys/socket.h'])
- have_struct_member('struct msghdr', 'msg_accrights', header=['sys/types.h', 'sys/socket.h'])
+ have_struct_member('struct msghdr', 'msg_control', ['sys/types.h', 'sys/socket.h'])
+ have_struct_member('struct msghdr', 'msg_accrights', ['sys/types.h', 'sys/socket.h'])
end
$getaddr_info_ok = false