summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Network/Ifaces.pm2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5898aa9..62ae99f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-08 Carlos Garnacho <carlosg@gnome.org>
+
+ * Network/Ifaces.pm (get_available_configuration_methods): oops,
+ elements in mapping table are arrays, not scalars. Definitely add
+ ipv4ll support for ubuntu-7.04.
+
2007-01-04 Carlos Garnacho <carlosg@gnome.org>
* Release 2.1.2
diff --git a/Network/Ifaces.pm b/Network/Ifaces.pm
index 9ac0d4e..bc26a8e 100644
--- a/Network/Ifaces.pm
+++ b/Network/Ifaces.pm
@@ -3618,7 +3618,7 @@ sub get_available_configuration_methods
my $dist = $Utils::Backend::tool{"platform"};
my $default = [ "static", "dhcp" ];
my %dist_map = (
- "ubuntu-7.04" => "ipv4ll",
+ "ubuntu-7.04" => [ "ipv4ll" ],
);
push @$default, @{$dist_map{$dist}};