From: David Barksdale Date: Fri, 31 Mar 2017 22:27:38 +0000 (-0500) Subject: [fs] Fix unindex after API change X-Git-Tag: gnunet-0.11.0rc0~278^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9e3bf5f4917da8f19b3fa46536bb21eaf2c7fcbc;p=oweals%2Fgnunet.git [fs] Fix unindex after API change --- 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;