diff options
author | Nick <nick@somerandomnick.ano> | 2010-06-12 00:13:52 +0000 |
---|---|---|
committer | Nick <nick@somerandomnick.ano> | 2010-06-12 00:13:52 +0000 |
commit | 381366508328917898846e4999a1071eb753930a (patch) | |
tree | 0c151e2b130b004b56539d78cd7da6b1ecdb35d4 /doc/ucis.ano | |
parent | b01837b1d7915591c9f7bca30b3891870e7c6b23 (diff) | |
download | resdb-381366508328917898846e4999a1071eb753930a.tar.gz resdb-381366508328917898846e4999a1071eb753930a.zip |
fixed another bug (misnamed ASes)
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 b23babd..e6a449f 100755 --- a/doc/ucis.ano/bgp_graph/path_list_to_dot.php +++ b/doc/ucis.ano/bgp_graph/path_list_to_dot.php @@ -30,7 +30,7 @@ $nodelist=array(); foreach ($nodes as $node => $links) { if (!array_key_exists($node,$nodelist)) $nodelist[$node]=nodename($node); foreach ($links as $link => $dummy) - if (!array_key_exists($link,$nodelist)) $nodelist[$node]=nodename($link); + if (!array_key_exists($link,$nodelist)) $nodelist[$link]=nodename($link); }; print("graph BGP_nodes {\n"); |