assert(ret);
+ if (opts == UINT32_MAX) {
+ *ret = NULL;
+ return 0;
+ }
+
for (size_t i = 0; i < ELEMENTSOF(wol_option_map); i++)
if (opts & wol_option_map[i].opt &&
!strextend_with_separator(&str, ",", wol_option_map[i].name))
}
*ret = TAKE_PTR(str);
- return 0;
+ return 1;
}
static const char* const port_table[] = {
_cleanup_free_ char *str = NULL;
(void) wol_options_to_string_alloc(config->wol, &str);
- log_device_warning_errno(device, r, "Could not set WakeOnLan to %s, ignoring: %m",
- strna(str));
+ log_device_warning_errno(device, r, "Could not set WakeOnLan%s%s, ignoring: %m",
+ isempty(str) ? "" : " to ", strempty(str));
}
r = ethtool_set_features(ethtool_fd, name, config->features);