summaryrefslogtreecommitdiff
path: root/src/librygel-core/rygel-energy-management.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/librygel-core/rygel-energy-management.vala')
-rw-r--r--src/librygel-core/rygel-energy-management.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librygel-core/rygel-energy-management.vala b/src/librygel-core/rygel-energy-management.vala
index fe93f53e..ea64d6cf 100644
--- a/src/librygel-core/rygel-energy-management.vala
+++ b/src/librygel-core/rygel-energy-management.vala
@@ -140,11 +140,11 @@ public class Rygel.EnergyManagement : Service {
wake_pattern = wake_pattern.concat (password);
} catch (GLib.Error error) { }
- var ip_addr = new InetAddress.from_string (this.root_device.context.host_ip);
+ var ip_addr = this.root_device.context.address;
bool is_ipv6 = (ip_addr != null && ip_addr.family == SocketFamily.IPV6);
var associated_ips = "<Ipv%d>%s</Ipv%d>".printf
(is_ipv6 ? 6 : 4,
- this.root_device.context.host_ip,
+ ip_addr.to_string(),
is_ipv6 ? 6 : 4);
string mode;