aboutsummaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-19 13:32:38 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-19 13:32:38 +0000
commit83d0dccb750279dcd0e3ec1635b4952d2e42cb1e (patch)
treeb227d1839872e8a252b92ef9df1bb38ed833ac37 /src/fs
parentcea1f6d7409c705a6b9a26308bae7b5674e0bd6a (diff)
downloadgnunet-83d0dccb750279dcd0e3ec1635b4952d2e42cb1e.tar.gz
gnunet-83d0dccb750279dcd0e3ec1635b4952d2e42cb1e.zip
Fix stat
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/gnunet-service-fs_pr.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/fs/gnunet-service-fs_pr.c b/src/fs/gnunet-service-fs_pr.c
index 953983d37..9a8a3f23a 100644
--- a/src/fs/gnunet-service-fs_pr.c
+++ b/src/fs/gnunet-service-fs_pr.c
@@ -1219,13 +1219,11 @@ process_local_reply (void *cls, const GNUNET_HashCode * key, size_t size,
1219 GNUNET_TIME_UNIT_FOREVER_REL, 1219 GNUNET_TIME_UNIT_FOREVER_REL,
1220 &process_local_reply, pr); 1220 &process_local_reply, pr);
1221 if (NULL != pr->qe) 1221 if (NULL != pr->qe)
1222 { 1222 return; /* we're done */
1223 GNUNET_STATISTICS_update (GSF_stats, 1223 GNUNET_STATISTICS_update (GSF_stats,
1224 gettext_noop 1224 gettext_noop
1225 ("# Datastore lookups concluded (error queueing)"), 1225 ("# Datastore lookups concluded (error queueing)"),
1226 1, GNUNET_NO); 1226 1, GNUNET_NO);
1227 return; /* we're done */
1228 }
1229 goto check_error_and_continue; 1227 goto check_error_and_continue;
1230 } 1228 }
1231 old_rf = pr->public_data.results_found; 1229 old_rf = pr->public_data.results_found;