about summary refs log tree commit homepage
path: root/ext/io_splice/io_splice_ext.c
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-02-22 01:00:34 +0000
committerEric Wong <e@yhbt.net>2020-02-22 01:00:59 +0000
commit2b91616c43ac16ff68854cbe57169fda71e15e57 (patch)
tree24d3d3355d739b7ecff027eb3164f5816860aa13 /ext/io_splice/io_splice_ext.c
parentaa15afd26c7cc98b28e1b59fae5326b601618c99 (diff)
downloadruby_io_splice-2b91616c43ac16ff68854cbe57169fda71e15e57.tar.gz
bogomips.org is going away since .org isn't going to
be affordable, anymore.  While we're at it, stop requiring
olddoc to just build the gem.
Diffstat (limited to 'ext/io_splice/io_splice_ext.c')
-rw-r--r--ext/io_splice/io_splice_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/io_splice/io_splice_ext.c b/ext/io_splice/io_splice_ext.c
index 97f744c..c5387a7 100644
--- a/ext/io_splice/io_splice_ext.c
+++ b/ext/io_splice/io_splice_ext.c
@@ -476,7 +476,7 @@ static void advance_vmsplice_args(struct vmsplice_args *a, long n)
  * This may allow the kernel to avoid data copies in some cases.
  * but is (probably) of limited usefulness in Ruby.  If you have
  * use cases or ideas for making this more useful for Ruby users,
- * please tell us at ruby-io-splice@bogomips.org!
+ * please tell us at ruby-io-splice@yhbt.net!
  *
  * Also consider the "sendfile" RubyGem or IO.copy_stream in Ruby 1.9
  * if you want to do zero-copy file transfers to pipes or sockets.  As