diff options
author | Maximilian Szengel <gnunet@maxsz.de> | 2012-04-19 11:39:16 +0000 |
---|---|---|
committer | Maximilian Szengel <gnunet@maxsz.de> | 2012-04-19 11:39:16 +0000 |
commit | 93a5401e858e978aa2d7fc090fc1f6612c15dc3f (patch) | |
tree | 742bf947188398af64ef06eae70e6cb0b243b045 /src/regex/test_regex_iterate_api.c | |
parent | 4071d1862fdcd9389e990784d0ea1fb9c4651f0f (diff) |
dfa minimization fix
Diffstat (limited to 'src/regex/test_regex_iterate_api.c')
-rw-r--r-- | src/regex/test_regex_iterate_api.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/regex/test_regex_iterate_api.c b/src/regex/test_regex_iterate_api.c index 913e94f2b2..39959641d2 100644 --- a/src/regex/test_regex_iterate_api.c +++ b/src/regex/test_regex_iterate_api.c @@ -31,7 +31,13 @@ void key_iterator(void *cls, const GNUNET_HashCode *key, const char *proof, int accepting, unsigned int num_edges, const struct GNUNET_REGEX_Edge *edges) { + int i; + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Iterating...\n"); + for (i=0; i<num_edges; i++) + { + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Edge %i: %s\n", i, edges[i].label); + } } int |