aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Barksdale <amatus@amat.us>2017-03-31 17:27:38 -0500
committerDavid Barksdale <amatus@amat.us>2017-03-31 17:28:43 -0500
commit9e3bf5f4917da8f19b3fa46536bb21eaf2c7fcbc (patch)
tree9e4d33440e99b7422a8e823b6a767df77ec786e0 /src
parent2b87f173e360aaf4a3bac3fbc6e5b4dc44cf58cd (diff)
downloadgnunet-9e3bf5f4917da8f19b3fa46536bb21eaf2c7fcbc.tar.gz
gnunet-9e3bf5f4917da8f19b3fa46536bb21eaf2c7fcbc.zip
[fs] Fix unindex after API change
Diffstat (limited to 'src')
-rw-r--r--src/fs/fs_unindex.c14
1 files 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,
464 * @param type type of the content 464 * @param type type of the content
465 * @param priority priority of the content 465 * @param priority priority of the content
466 * @param anonymity anonymity-level for the content 466 * @param anonymity anonymity-level for the content
467 * @param replication replication-level for the content
467 * @param expiration expiration time for the content 468 * @param expiration expiration time for the content
468 * @param uid unique identifier for the datum; 469 * @param uid unique identifier for the datum;
469 * maybe 0 if no unique identifier is available 470 * maybe 0 if no unique identifier is available
470 */ 471 */
471static void 472static void
472process_kblock_for_unindex (void *cls, 473process_kblock_for_unindex (void *cls,
473 const struct GNUNET_HashCode *key, 474 const struct GNUNET_HashCode *key,
474 size_t size, 475 size_t size,
475 const void *data, 476 const void *data,
476 enum GNUNET_BLOCK_Type type, 477 enum GNUNET_BLOCK_Type type,
477 uint32_t priority, 478 uint32_t priority,
478 uint32_t anonymity, 479 uint32_t anonymity,
479 struct GNUNET_TIME_Absolute expiration, 480 uint32_t replication,
481 struct GNUNET_TIME_Absolute expiration,
480 uint64_t uid) 482 uint64_t uid)
481{ 483{
482 struct GNUNET_FS_UnindexContext *uc = cls; 484 struct GNUNET_FS_UnindexContext *uc = cls;