summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_file.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-09-29 16:56:21 +0000
committerAndy Polyakov <appro@openssl.org>2005-09-29 16:56:21 +0000
commit3c2b73672e004f185756a890f393676a1e297bed (patch)
tree2c87a32a1f7e614551d17aaa3d7f22c6dd85042c /crypto/bio/bss_file.c
parent23acb0eeb2ec89cb3d673dd0fb04838d83b13a1a (diff)
Fix missing applink call.
Diffstat (limited to 'crypto/bio/bss_file.c')
-rw-r--r--crypto/bio/bss_file.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c
index ccc741556e..ed6ee6cabb 100644
--- a/crypto/bio/bss_file.c
+++ b/crypto/bio/bss_file.c
@@ -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);