networkd: vlan improve logging

Replaces strerror() usage with log_netdev_error_errno()
This commit is contained in:
Susant Sahani
2015-06-15 09:04:28 +05:30
parent a2088fd025
commit 0a07970ead

View File

@@ -34,12 +34,8 @@ static int netdev_vlan_fill_message_create(NetDev *netdev, Link *link, sd_netlin
if (v->id <= VLANID_MAX) {
r = sd_netlink_message_append_u16(req, IFLA_VLAN_ID, v->id);
if (r < 0) {
log_netdev_error(netdev,
"Could not append IFLA_VLAN_ID attribute: %s",
strerror(-r));
return r;
}
if (r < 0)
return log_netdev_error_errno(netdev, r, "Could not append IFLA_VLAN_ID attribute: %m");
}
return 0;