Fix missing applink call.
[openssl.git] / crypto / bio / bss_file.c
index ccc741556ea54aa59151ad1c3094872f5b8abee4..ed6ee6cabba0b0e253897a5dbae75fa0eac7eb82 100644 (file)
@@ -396,7 +396,10 @@ static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size)
        int ret=0;
 
        buf[0]='\0';
-       fgets(buf,size,(FILE *)bp->ptr);
+       if (b->flags&BIO_FLAGS_UPLINK)
+               UP_fgets(buf,size,bp->ptr);
+       else
+               fgets(buf,size,(FILE *)bp->ptr);
        if (buf[0] != '\0')
                ret=strlen(buf);
        return(ret);