Commit 7ad84da7 by Daniel Lezcano

fix indentation of the previous patch

parent 49684c0b
...@@ -1425,9 +1425,14 @@ static int setup_private_host_hw_addr(char *veth1) ...@@ -1425,9 +1425,14 @@ static int setup_private_host_hw_addr(char *veth1)
if (err < 0) if (err < 0)
return -errno; return -errno;
DEBUG("mac address of host interface '%s' changed to private %02x:%02x:%02x:%02x:%02x:%02x", DEBUG("mac address of host interface '%s' changed to private "
veth1, ifr.ifr_hwaddr.sa_data[0] & 0xff, ifr.ifr_hwaddr.sa_data[1] & 0xff, ifr.ifr_hwaddr.sa_data[2] & 0xff, "%02x:%02x:%02x:%02x:%02x:%02x", veth1,
ifr.ifr_hwaddr.sa_data[3] & 0xff, ifr.ifr_hwaddr.sa_data[4] & 0xff, ifr.ifr_hwaddr.sa_data[5] & 0xff); 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; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment