aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_file.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-12-18 19:11:37 +0000
committerAndy Polyakov <appro@openssl.org>2005-12-18 19:11:37 +0000
commitbe7b4458f226a9c8052efa4bb7b61dc4fc0c5353 (patch)
tree6842610954401d9560e4af8c18839574085cf7cc /crypto/bio/bss_file.c
parent7304956e39ae710d07e4691d3215c5c5db7181b5 (diff)
downloadopenssl-be7b4458f226a9c8052efa4bb7b61dc4fc0c5353.tar.gz
Keep disclaiming 16-bit platform support. For now remove WIN16 references
from .h files...
Diffstat (limited to 'crypto/bio/bss_file.c')
-rw-r--r--crypto/bio/bss_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c
index 93727685cf..9e161b17f5 100644
--- a/crypto/bio/bss_file.c
+++ b/crypto/bio/bss_file.c
@@ -127,7 +127,7 @@ BIO *BIO_new_file(const char *filename, const char *mode)
BIOerr(BIO_F_BIO_NEW_FILE,ERR_R_SYS_LIB);
return(NULL);
}
- if ((ret=BIO_new(BIO_s_file_internal())) == NULL)
+ if ((ret=BIO_new(BIO_s_file())) == NULL)
return(NULL);
BIO_clear_flags(ret,BIO_FLAGS_UPLINK); /* we did fopen -> we disengage UPLINK */