Index: trunk/src/plugins/rt_topo/crbs_route.c =================================================================== --- trunk/src/plugins/rt_topo/crbs_route.c (revision 1346) +++ trunk/src/plugins/rt_topo/crbs_route.c (revision 1347) @@ -262,12 +262,14 @@ /*printf("Neigh: %d / %d (dir: %d)\n", a->pt_idx, a->pts.used, a->grbs_idx);*/ if (pt == crbs->target->pt->user_data) { /* quick lane for reaching the target */ - printf(" try from %s P%ld to TARGET P%ld\n", from_type, curr->pt->uid, pt->gpt->uid); + printf(" try from %s P%ld to TARGET P%ld", from_type, curr->pt->uid, pt->gpt->uid); next = crbs_next_hop(crbs, curr, pt, GRBS_ADIR_INC); if (next != NULL) { a->pt_idx = a->pts.used; /* don't consider detours from the current node if target node can be reached directly */ + printf(" -> ok\n"); return crbs->target; } + printf(" -> failed\n"); a->pt_idx++; continue; }