diff options
author | Joachim Tingvold <joachim@tingvold.com> | 2015-03-21 22:48:32 +0100 |
---|---|---|
committer | Joachim Tingvold <joachim@tingvold.com> | 2015-03-21 22:48:32 +0100 |
commit | 6669f020b17779cc6767a30ca2e7c51de766b9b8 (patch) | |
tree | f15349365fd6d905a49b64cbd6ab19bb27f8451b /mbd | |
parent | fe80e0a56b3b67699a6117b010e6d5c81e8391ba (diff) |
Spring cleaning for TG15.
Preparing for DHCP6. Cleanup of old files.
Diffstat (limited to 'mbd')
-rwxr-xr-x[-rw-r--r--] | mbd/make-mbd-nets.pl | 4 |
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"; |