]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
fix indentation of the previous patch
authorDaniel Lezcano <daniel.lezcano@free.fr>
Thu, 5 Jan 2012 21:45:31 +0000 (22:45 +0100)
committerDaniel Lezcano <daniel.lezcano@free.fr>
Thu, 5 Jan 2012 21:45:31 +0000 (22:45 +0100)
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
src/lxc/conf.c

index e55318d3104d6bb70d258ed03cf30bef28f221c1..41039d7a3fd46a5a72f5e6fe837a2f4d5408b0d5 100644 (file)
@@ -1425,9 +1425,14 @@ static int setup_private_host_hw_addr(char *veth1)
        if (err < 0)
                return -errno;
 
-       DEBUG("mac address of host interface '%s' changed to private %02x:%02x:%02x:%02x:%02x:%02x",
-             veth1, ifr.ifr_hwaddr.sa_data[0] & 0xff, ifr.ifr_hwaddr.sa_data[1] & 0xff, ifr.ifr_hwaddr.sa_data[2] & 0xff,
-             ifr.ifr_hwaddr.sa_data[3] & 0xff, ifr.ifr_hwaddr.sa_data[4] & 0xff, ifr.ifr_hwaddr.sa_data[5] & 0xff);
+       DEBUG("mac address of host interface '%s' changed to private "
+             "%02x:%02x:%02x:%02x:%02x:%02x", veth1,
+             ifr.ifr_hwaddr.sa_data[0] & 0xff,
+             ifr.ifr_hwaddr.sa_data[1] & 0xff,
+             ifr.ifr_hwaddr.sa_data[2] & 0xff,
+             ifr.ifr_hwaddr.sa_data[3] & 0xff,
+             ifr.ifr_hwaddr.sa_data[4] & 0xff,
+             ifr.ifr_hwaddr.sa_data[5] & 0xff);
 
        return 0;
 }