aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs_push.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-03-25 08:49:47 +0000
committerChristian Grothoff <christian@grothoff.org>2011-03-25 08:49:47 +0000
commit390a68296dd89f61461bdca02060d36e2e02af2b (patch)
tree9aa86841d2052cdd4080f6a4e2003313bf9670bf /src/fs/gnunet-service-fs_push.c
parent78469082de0b7fa49724504b7e21bb2e9b4bef05 (diff)
downloadgnunet-390a68296dd89f61461bdca02060d36e2e02af2b.tar.gz
gnunet-390a68296dd89f61461bdca02060d36e2e02af2b.zip
adapt to new API
Diffstat (limited to 'src/fs/gnunet-service-fs_push.c')
-rw-r--r--src/fs/gnunet-service-fs_push.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/gnunet-service-fs_push.c b/src/fs/gnunet-service-fs_push.c
index da781bc07..e720f392f 100644
--- a/src/fs/gnunet-service-fs_push.c
+++ b/src/fs/gnunet-service-fs_push.c
@@ -479,7 +479,7 @@ process_migration_content (void *cls,
479 MIN_MIGRATION_CONTENT_LIFETIME.rel_value) 479 MIN_MIGRATION_CONTENT_LIFETIME.rel_value)
480 { 480 {
481 /* content will expire soon, don't bother */ 481 /* content will expire soon, don't bother */
482 GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_YES); 482 GNUNET_DATASTORE_get_next (GSF_dsh);
483 return; 483 return;
484 } 484 }
485 if (type == GNUNET_BLOCK_TYPE_FS_ONDEMAND) 485 if (type == GNUNET_BLOCK_TYPE_FS_ONDEMAND)
@@ -491,7 +491,7 @@ process_migration_content (void *cls,
491 &process_migration_content, 491 &process_migration_content,
492 NULL)) 492 NULL))
493 { 493 {
494 GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_YES); 494 GNUNET_DATASTORE_get_next (GSF_dsh);
495 } 495 }
496 return; 496 return;
497 } 497 }
@@ -522,7 +522,7 @@ process_migration_content (void *cls,
522 } 522 }
523 pos = pos->next; 523 pos = pos->next;
524 } 524 }
525 GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_YES); 525 GNUNET_DATASTORE_get_next (GSF_dsh);
526} 526}
527 527
528 528