From 755bde375f4db393ad06e73340bfcf4d0cf91bb2 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 28 Nov 2014 16:32:26 +0100 Subject: udev,update-done: more log_xyz_errno() conversions --- src/udev/net/link-config.c | 13 ++++++------- src/udev/udev-event.c | 3 +-- 2 files changed, 7 insertions(+), 9 deletions(-) (limited to 'src/udev') diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c index 7d1bdc9ee7..5aac5bca49 100644 --- a/src/udev/net/link-config.c +++ b/src/udev/net/link-config.c @@ -342,14 +342,14 @@ int link_config_apply(link_config_ctx *ctx, link_config *config, r = ethtool_set_speed(&ctx->ethtool_fd, old_name, config->speed / 1024, config->duplex); if (r < 0) - log_warning("Could not set speed or duplex of %s to %u Mbps (%s): %s", - old_name, config->speed / 1024, - duplex_to_string(config->duplex), strerror(-r)); + log_warning_errno(r, "Could not set speed or duplex of %s to %u Mbps (%s): %m", + old_name, config->speed / 1024, + duplex_to_string(config->duplex)); r = ethtool_set_wol(&ctx->ethtool_fd, old_name, config->wol); if (r < 0) - log_warning("Could not set WakeOnLan of %s to %s: %s", - old_name, wol_to_string(config->wol), strerror(-r)); + log_warning_errno(r, "Could not set WakeOnLan of %s to %s: %m", + old_name, wol_to_string(config->wol)); ifindex = udev_device_get_ifindex(device); if (ifindex <= 0) { @@ -422,8 +422,7 @@ int link_config_apply(link_config_ctx *ctx, link_config *config, r = rtnl_set_link_properties(&ctx->rtnl, ifindex, config->alias, mac, config->mtu); if (r < 0) { - log_warning("Could not set Alias, MACAddress or MTU on %s: %s", - old_name, strerror(-r)); + log_warning_errno(r, "Could not set Alias, MACAddress or MTU on %s: %m", old_name); return r; } diff --git a/src/udev/udev-event.c b/src/udev/udev-event.c index 7799a20d20..2917c32413 100644 --- a/src/udev/udev-event.c +++ b/src/udev/udev-event.c @@ -776,8 +776,7 @@ static int rename_netif(struct udev_event *event) { r = rtnl_set_link_name(&event->rtnl, udev_device_get_ifindex(dev), name); if (r < 0) { - log_error("error changing net interface name '%s' to '%s': %s", - oldname, name, strerror(-r)); + log_error_errno(r, "Error changing net interface name '%s' to '%s': %m", oldname, name); return r; } -- cgit v1.2.3-54-g00ecf