diff options
author | Nick <nick@somerandomnick.ano> | 2010-06-12 00:05:16 +0000 |
---|---|---|
committer | Nick <nick@somerandomnick.ano> | 2010-06-12 00:05:16 +0000 |
commit | b01837b1d7915591c9f7bca30b3891870e7c6b23 (patch) | |
tree | 88583126f34490dec6e07812089ea9a5b55c7da5 /doc/ucis.ano | |
parent | 22ea1c4d55e90ac6b2d645e3fc1be0b701e9316f (diff) | |
download | resdb-b01837b1d7915591c9f7bca30b3891870e7c6b23.tar.gz resdb-b01837b1d7915591c9f7bca30b3891870e7c6b23.zip |
forgot semicolons in dot code (bug reported and tracked down by UFO)
Diffstat (limited to 'doc/ucis.ano')
-rwxr-xr-x | doc/ucis.ano/bgp_graph/path_list_to_dot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ucis.ano/bgp_graph/path_list_to_dot.php b/doc/ucis.ano/bgp_graph/path_list_to_dot.php index 5fb9cfb..b23babd 100755 --- a/doc/ucis.ano/bgp_graph/path_list_to_dot.php +++ b/doc/ucis.ano/bgp_graph/path_list_to_dot.php @@ -35,7 +35,7 @@ foreach ($nodes as $node => $links) { 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) { |