aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-05 21:34:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-05 21:34:44 +0000
commite85f943e7a0c50d4c3f59e898d3347761ec94618 (patch)
tree6c61392aa886eb8ca61726b69f5e0ef1b1a82fa9 /ext
parent148f8c361cc51448bc039c4e7f609df050834425 (diff)
downloadruby-e85f943e7a0c50d4c3f59e898d3347761ec94618.tar.gz
fix a typo [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64646 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/socket/basicsocket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/basicsocket.c b/ext/socket/basicsocket.c
index a1065608e6..1371672850 100644
--- a/ext/socket/basicsocket.c
+++ b/ext/socket/basicsocket.c
@@ -322,7 +322,7 @@ bsock_getsockopt(VALUE sock, VALUE lev, VALUE optname)
case SO_DONTROUTE:
case SO_BROADCAST:
case SO_OOBINLINE:
- /* AIX doesn' set len for boolean options */
+ /* AIX doesn't set len for boolean options */
len = sizeof(int);
}
#endif