summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl_bio.c
diff options
context:
space:
mode:
authornobu <nobu@ruby-lang.org>2007-02-24 10:30:50 +0000
committernobu <nobu@ruby-lang.org>2007-02-24 10:30:50 +0000
commit962aa87d40837dde5b97c833b143b854bc07b8ce (patch)
tree90d265805e35fda7bb9c92621c3a8e9bb5a4d145 /ext/openssl/ossl_bio.c
parent2de69fd873b8a2a542bb4e9ea2e586e08be79f50 (diff)
downloadruby-openssl-history-962aa87d40837dde5b97c833b143b854bc07b8ce.tar.gz
* file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t):
renamed from OpenFile. * ext/dl/cptr.c, ext/io/wait/wait.c, ext/openssl/ossl.h, ext/openssl/ossl_bio.c, ext/openssl/ossl_ssl.c, ext/pty/pty.c, ext/readline/readline.c, ext/socket/socket.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl_bio.c')
-rw-r--r--ext/openssl/ossl_bio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_bio.c b/ext/openssl/ossl_bio.c
index aa0b99f..1358478 100644
--- a/ext/openssl/ossl_bio.c
+++ b/ext/openssl/ossl_bio.c
@@ -19,7 +19,7 @@ ossl_obj2bio(VALUE obj)
BIO *bio;
if (TYPE(obj) == T_FILE) {
- OpenFile *fptr;
+ rb_io_t *fptr;
FILE *fp;
int fd;