diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-17 10:43:55 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-17 10:43:55 +0000 |
| commit | 9a02f50a16931807c109907983e97390e473a706 (patch) | |
| tree | 5da972c2736abe3101430ac26bad5378730d63d2 | |
| parent | abe15fbd74b4f5607fc0f17ac5d98b2a182a88e6 (diff) | |
| download | ruby-9a02f50a16931807c109907983e97390e473a706.tar.gz ruby-9a02f50a16931807c109907983e97390e473a706.tar.xz ruby-9a02f50a16931807c109907983e97390e473a706.zip | |
fix an error message.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22374 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ext/socket/ancdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/ancdata.c b/ext/socket/ancdata.c index cbe10f51d..531c7851a 100644 --- a/ext/socket/ancdata.c +++ b/ext/socket/ancdata.c @@ -1132,7 +1132,7 @@ bsock_recvmsg_internal(int argc, VALUE *argv, VALUE sock, int nonblock) GetOpenFile(sock, fptr); if (rb_io_read_pending(fptr)) { - rb_raise(rb_eIOError, "recvfrom for buffered IO"); + rb_raise(rb_eIOError, "recvmsg for buffered IO"); } #if !defined(HAVE_ST_MSG_CONTROL) |
