aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_fs_search_probes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/test_fs_search_probes.c')
-rw-r--r--src/fs/test_fs_search_probes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/test_fs_search_probes.c b/src/fs/test_fs_search_probes.c
index b3c717aa1..776babaee 100644
--- a/src/fs/test_fs_search_probes.c
+++ b/src/fs/test_fs_search_probes.c
@@ -209,7 +209,7 @@ run (void *cls,
209 "down_bar" 209 "down_bar"
210 }; 210 };
211 char *buf; 211 char *buf;
212 struct GNUNET_CONTAINER_MetaData *meta; 212 struct GNUNET_FS_MetaData *meta;
213 struct GNUNET_FS_Uri *kuri; 213 struct GNUNET_FS_Uri *kuri;
214 struct GNUNET_FS_BlockOptions bo; 214 struct GNUNET_FS_BlockOptions bo;
215 struct GNUNET_FS_FileInformation *fi; 215 struct GNUNET_FS_FileInformation *fi;
@@ -222,7 +222,7 @@ run (void *cls,
222 buf = GNUNET_malloc (FILESIZE); 222 buf = GNUNET_malloc (FILESIZE);
223 for (i = 0; i < FILESIZE; i++) 223 for (i = 0; i < FILESIZE; i++)
224 buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256); 224 buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
225 meta = GNUNET_CONTAINER_meta_data_create (); 225 meta = GNUNET_FS_meta_data_create ();
226 kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords); 226 kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
227 bo.content_priority = 42; 227 bo.content_priority = 42;
228 bo.anonymity_level = 1; 228 bo.anonymity_level = 1;
@@ -232,7 +232,7 @@ run (void *cls,
232 FILESIZE, buf, kuri, meta, 232 FILESIZE, buf, kuri, meta,
233 GNUNET_NO, &bo); 233 GNUNET_NO, &bo);
234 GNUNET_FS_uri_destroy (kuri); 234 GNUNET_FS_uri_destroy (kuri);
235 GNUNET_CONTAINER_meta_data_destroy (meta); 235 GNUNET_FS_meta_data_destroy (meta);
236 GNUNET_assert (NULL != fi); 236 GNUNET_assert (NULL != fi);
237 start = GNUNET_TIME_absolute_get (); 237 start = GNUNET_TIME_absolute_get ();
238 publish = 238 publish =