From 4ac978a3ae0dd90fb4acf55e42a55b9577fedecd Mon Sep 17 00:00:00 2001 From: Chiaki ISHIKAWA Date: Tue, 10 Mar 2015 21:25:38 +0900 Subject: [PATCH 2/8] hash file creation failure is recorded now. --- hash.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hash.c b/hash.c index 80beed2..872c0a6 100644 --- a/hash.c +++ b/hash.c @@ -128,6 +128,7 @@ hash_file(struct mdfour *md, const char *fname) fd = open(fname, O_RDONLY|O_BINARY); if (fd == -1) { + cc_log("hash file creation (%s) failed\n", fname); /* to catch strange errors */ return false; } -- 2.1.4