aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-02-28 13:37:30 +0000
committerBart Polot <bart@net.in.tum.de>2013-02-28 13:37:30 +0000
commit8b950d57b615e16b1ec63e570a4ba9f46657de62 (patch)
tree0478bf3e946ceb476951514c6c9ea913c8c310d4 /src
parentfc19b9680d0e041420cee7ebe2e82a3957f786df (diff)
downloadgnunet-8b950d57b615e16b1ec63e570a4ba9f46657de62.tar.gz
gnunet-8b950d57b615e16b1ec63e570a4ba9f46657de62.zip
- keep track of fails/successes
Diffstat (limited to 'src')
-rw-r--r--src/regex/gnunet-regex-profiler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex/gnunet-regex-profiler.c b/src/regex/gnunet-regex-profiler.c
index b0beb0fab..a81f63b61 100644
--- a/src/regex/gnunet-regex-profiler.c
+++ b/src/regex/gnunet-regex-profiler.c
@@ -1625,7 +1625,7 @@ controller_event_cb (void *cls,
1625 { 1625 {
1626 GNUNET_log (GNUNET_ERROR_TYPE_INFO, 1626 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1627 _("An operation has failed while linking\n")); 1627 _("An operation has failed while linking\n"));
1628 printf ("F%u ", retry_links); 1628 printf ("F%u/%u ", retry_links + 1, established_links + 1);
1629 printf ("\n%s\n ", event->details.operation_finished.emsg); 1629 printf ("\n%s\n ", event->details.operation_finished.emsg);
1630 fflush (stdout); 1630 fflush (stdout);
1631 retry_links++; 1631 retry_links++;