changeset 46:c79c2e94307c draft

forgot semicolons in dot code (bug reported and tracked down by UFO)
author Nick <nick@somerandomnick.ano>
date Sat, 12 Jun 2010 00:05:16 +0000
parents 0e67b9ea9a31
children f2fb1d2dcf8c
files doc/ucis.ano/bgp_graph/path_list_to_dot.php
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ucis.ano/bgp_graph/path_list_to_dot.php	Sat Jun 12 00:03:39 2010 +0000
+++ b/doc/ucis.ano/bgp_graph/path_list_to_dot.php	Sat Jun 12 00:05:16 2010 +0000
@@ -35,7 +35,7 @@
 
 print("graph BGP_nodes {\n");
 foreach ($nodelist as $node => $name)
- print "\t".$node.' [label="'.$name.'"]'."\n";
+ print "\t".$node.' [label="'.$name.'"];'."\n";
 
 foreach ($nodes as $node => $links) {
 	foreach ($links as $link => $dummy) {