aboutsummaryrefslogtreecommitdiffstats
path: root/mbd
diff options
context:
space:
mode:
Diffstat (limited to 'mbd')
-rwxr-xr-x[-rw-r--r--]mbd/make-mbd-nets.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbd/make-mbd-nets.pl b/mbd/make-mbd-nets.pl
index 6af76f0..7f6ec97 100644..100755
--- a/mbd/make-mbd-nets.pl
+++ b/mbd/make-mbd-nets.pl
@@ -17,9 +17,9 @@ while(<NETLIST>) {
next if /^(.*#|\s+$)/; # skip if comment, or blank line
chomp;
- my ($network, $prefix, $switchname, undef) = split;
+ my ($v4_net, $v6_net, $net_name) = split;
- print "\t\"$network/$prefix\",\n";
+ print "\t\"$v4_net\",\n";
}
print ");\n";