Keep disclaiming 16-bit platform support. For now remove WIN16 references
[openssl.git] / crypto / bio / bss_file.c
index 93727685cf5909563332d30e50b3c816c512eaa2..9e161b17f508076ceeea2f34e74a6098e76f7796 100644 (file)
@@ -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 */