From 9e3bf5f4917da8f19b3fa46536bb21eaf2c7fcbc Mon Sep 17 00:00:00 2001 From: David Barksdale Date: Fri, 31 Mar 2017 17:27:38 -0500 Subject: [PATCH] [fs] Fix unindex after API change --- src/fs/fs_unindex.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/fs/fs_unindex.c b/src/fs/fs_unindex.c index e1c7ea535..95a48f8cc 100644 --- a/src/fs/fs_unindex.c +++ b/src/fs/fs_unindex.c @@ -464,19 +464,21 @@ continue_after_remove (void *cls, * @param type type of the content * @param priority priority of the content * @param anonymity anonymity-level for the content + * @param replication replication-level for the content * @param expiration expiration time for the content * @param uid unique identifier for the datum; * maybe 0 if no unique identifier is available */ static void process_kblock_for_unindex (void *cls, - const struct GNUNET_HashCode *key, - size_t size, + const struct GNUNET_HashCode *key, + size_t size, const void *data, - enum GNUNET_BLOCK_Type type, - uint32_t priority, - uint32_t anonymity, - struct GNUNET_TIME_Absolute expiration, + enum GNUNET_BLOCK_Type type, + uint32_t priority, + uint32_t anonymity, + uint32_t replication, + struct GNUNET_TIME_Absolute expiration, uint64_t uid) { struct GNUNET_FS_UnindexContext *uc = cls; -- 2.25.1