summaryrefslogtreecommitdiff
path: root/libtomcrypt/src/hashes/helper/hash_file.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-06-26 21:07:34 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-06-26 21:07:34 +0800
commit71b4ec569cb33a5dcd4abf50650ccd78e6d3b2dd (patch)
tree497adde943fd41206f8d263131b255dda1833ca1 /libtomcrypt/src/hashes/helper/hash_file.c
parent3187f27fcd533b8d16feebba9090007c82725eff (diff)
parenteaf9be05d7d9de22f2ff936882874331fc2d1a0e (diff)
downloaddropbear-71b4ec569cb33a5dcd4abf50650ccd78e6d3b2dd.tar.gz
merge coverity from maincoverity
Diffstat (limited to 'libtomcrypt/src/hashes/helper/hash_file.c')
-rw-r--r--libtomcrypt/src/hashes/helper/hash_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtomcrypt/src/hashes/helper/hash_file.c b/libtomcrypt/src/hashes/helper/hash_file.c
index b3e79d9..0b96eae 100644
--- a/libtomcrypt/src/hashes/helper/hash_file.c
+++ b/libtomcrypt/src/hashes/helper/hash_file.c
@@ -9,7 +9,7 @@
#include "tomcrypt.h"
#ifndef LTC_NO_FILE
-/**
+/**
@file hash_file.c
Hash a file, Tom St Denis
*/
@@ -34,7 +34,7 @@ int hash_file(int hash, const char *fname, unsigned char *out, unsigned long *ou
}
in = fopen(fname, "rb");
- if (in == NULL) {
+ if (in == NULL) {
return CRYPT_FILE_NOTFOUND;
}