aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fs/gnunet-service-fs_cp.c2
-rw-r--r--src/fs/gnunet-service-fs_push.c2
-rw-r--r--src/include/gnunet_container_lib.h6
3 files changed, 5 insertions, 5 deletions
diff --git a/src/fs/gnunet-service-fs_cp.c b/src/fs/gnunet-service-fs_cp.c
index e015b954a..80ca8de9c 100644
--- a/src/fs/gnunet-service-fs_cp.c
+++ b/src/fs/gnunet-service-fs_cp.c
@@ -1610,7 +1610,7 @@ GSF_connected_peer_done_ ()
1610/** 1610/**
1611 * Iterator to remove references to LC entry. 1611 * Iterator to remove references to LC entry.
1612 * 1612 *
1613 * @param the 'struct GSF_LocalClient*' to look for 1613 * @param cls the 'struct GSF_LocalClient*' to look for
1614 * @param key current key code 1614 * @param key current key code
1615 * @param value value in the hash map (peer entry) 1615 * @param value value in the hash map (peer entry)
1616 * @return GNUNET_YES (we should continue to iterate) 1616 * @return GNUNET_YES (we should continue to iterate)
diff --git a/src/fs/gnunet-service-fs_push.c b/src/fs/gnunet-service-fs_push.c
index 0c67000d0..c1f520510 100644
--- a/src/fs/gnunet-service-fs_push.c
+++ b/src/fs/gnunet-service-fs_push.c
@@ -348,7 +348,7 @@ consider_gathering (void);
348/** 348/**
349 * Find content for migration to this peer. 349 * Find content for migration to this peer.
350 * 350 *
351 * @param mig peer to find content for 351 * @param mrp peer to find content for
352 */ 352 */
353static void 353static void
354find_content (struct MigrationReadyPeer *mrp) 354find_content (struct MigrationReadyPeer *mrp)
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index 908657d6b..41ed4bd3f 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -154,10 +154,10 @@ void GNUNET_CONTAINER_bloomfilter_remove (struct GNUNET_CONTAINER_BloomFilter
154 154
155 155
156/** 156/**
157 * Free the space associcated with a filter 157 * Create a copy of a bloomfilter.
158 * in memory, flush to drive if needed (do not 158 *
159 * free the space on the drive)
160 * @param bf the filter 159 * @param bf the filter
160 * @return copy of bf
161 */ 161 */
162struct GNUNET_CONTAINER_BloomFilter * 162struct GNUNET_CONTAINER_BloomFilter *
163GNUNET_CONTAINER_bloomfilter_copy (const struct GNUNET_CONTAINER_BloomFilter *bf); 163GNUNET_CONTAINER_bloomfilter_copy (const struct GNUNET_CONTAINER_BloomFilter *bf);