aboutsummaryrefslogtreecommitdiff
path: root/src/util/crypto_hash_file.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-05-28 09:58:58 +0000
committerChristian Grothoff <christian@grothoff.org>2015-05-28 09:58:58 +0000
commitfc1b9d4caffabba3411a27f62f9ea309a2cf8edc (patch)
tree1531a48624abbf478a27a1780e243c1059a7a938 /src/util/crypto_hash_file.c
parentb1294ac8f7a3cf9d53334485b7ff2d97d3fb4ab7 (diff)
downloadgnunet-fc1b9d4caffabba3411a27f62f9ea309a2cf8edc.tar.gz
gnunet-fc1b9d4caffabba3411a27f62f9ea309a2cf8edc.zip
-fix ftbfs
Diffstat (limited to 'src/util/crypto_hash_file.c')
-rw-r--r--src/util/crypto_hash_file.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/util/crypto_hash_file.c b/src/util/crypto_hash_file.c
index 2d15fac36..f2b53008e 100644
--- a/src/util/crypto_hash_file.c
+++ b/src/util/crypto_hash_file.c
@@ -18,12 +18,18 @@
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19 19
20*/ 20*/
21
22/** 21/**
23 * @file util/crypto_hash_file.c 22 * @file util/crypto_hash_file.c
24 * @brief incremental hashing of files 23 * @brief incremental hashing of files
25 * @author Christian Grothoff 24 * @author Christian Grothoff
26 */ 25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include <gcrypt.h>
29
30#define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
31
32#define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
27 33
28 34
29/** 35/**