aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_file.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-09-29 20:16:04 +0000
committerAndy Polyakov <appro@openssl.org>2005-09-29 20:16:04 +0000
commit94c00f3d4da27d9eed08083f1dea9645e90a3d0f (patch)
tree671b5e0c80257c032f555648fd42cd8b005c0226 /crypto/bio/bss_file.c
parent3c2b73672e004f185756a890f393676a1e297bed (diff)
downloadopenssl-94c00f3d4da27d9eed08083f1dea9645e90a3d0f.tar.gz
Fix typo.
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 ed6ee6cabb..ad4b301388 100644
--- a/crypto/bio/bss_file.c
+++ b/crypto/bio/bss_file.c
@@ -396,7 +396,7 @@ static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size)
int ret=0;
buf[0]='\0';
- if (b->flags&BIO_FLAGS_UPLINK)
+ if (bp->flags&BIO_FLAGS_UPLINK)
UP_fgets(buf,size,bp->ptr);
else
fgets(buf,size,(FILE *)bp->ptr);