summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bss_file.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-22 01:02:03 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:46:26 +0000
commit4bc991384404d05e49e3aa622c142c7b7d05ef7b (patch)
tree8a629b6e88a6da6ec92de0e62d113ea077ad77f6 /crypto/bio/bss_file.c
parenta8b966f48f23fb66645d409c609603e8b8a005f1 (diff)
Rerun util/openssl-format-source -v -c .OpenSSL_1_0_0-post-auto-reformat
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bio/bss_file.c')
-rw-r--r--crypto/bio/bss_file.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c
index d3da7e789f..d7f15b0699 100644
--- a/crypto/bio/bss_file.c
+++ b/crypto/bio/bss_file.c
@@ -239,8 +239,7 @@ static int MS_CALLBACK file_read(BIO *b, char *out, int outl)
else
ret = fread(out, 1, (int)outl, (FILE *)b->ptr);
if (ret == 0
- && (b->
- flags & BIO_FLAGS_UPLINK) ? UP_ferror((FILE *)b->ptr) :
+ && (b->flags & BIO_FLAGS_UPLINK) ? UP_ferror((FILE *)b->ptr) :
ferror((FILE *)b->ptr)) {
SYSerr(SYS_F_FREAD, get_last_sys_error());
BIOerr(BIO_F_FILE_READ, ERR_R_SYS_LIB);