aboutsummaryrefslogtreecommitdiff
path: root/src/statistics
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-06-24 13:39:32 +0000
committerChristian Grothoff <christian@grothoff.org>2009-06-24 13:39:32 +0000
commita913b5f73410eb3f0568670046d3ecf3b233744f (patch)
treedcb13bbc2aa2ed6c23832e4c55a0f843c0a68f31 /src/statistics
parentb2b1773aaa6e7c0c61ff7ac5a5766a8a2ea25495 (diff)
downloadgnunet-a913b5f73410eb3f0568670046d3ecf3b233744f.tar.gz
gnunet-a913b5f73410eb3f0568670046d3ecf3b233744f.zip
stuff
Diffstat (limited to 'src/statistics')
-rw-r--r--src/statistics/statistics_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/statistics/statistics_api.c b/src/statistics/statistics_api.c
index be78d260a..13a091955 100644
--- a/src/statistics/statistics_api.c
+++ b/src/statistics/statistics_api.c
@@ -587,7 +587,8 @@ GNUNET_STATISTICS_get (struct GNUNET_STATISTICS_Handle *handle,
587 "Failed to connect to statistics service, can not get value `%s:%s'.\n", 587 "Failed to connect to statistics service, can not get value `%s:%s'.\n",
588 strlen (subsystem) ? subsystem : "*", 588 strlen (subsystem) ? subsystem : "*",
589 strlen (name) ? name : "*"); 589 strlen (name) ? name : "*");
590 cont (cls, GNUNET_SYSERR); 590 if (cont != NULL)
591 cont (cls, GNUNET_SYSERR);
591 return; 592 return;
592 } 593 }
593 if (subsystem == NULL) 594 if (subsystem == NULL)