1
0
mirror of https://github.com/systemd/systemd synced 2025-10-06 20:24:45 +02:00

Compare commits

..

No commits in common. "e65455feade65c798fd1742220768eba7f81755b" and "8013beb4a2221680b2c741bac6b3a33fe66406e1" have entirely different histories.

2 changed files with 4 additions and 3 deletions

View File

@ -82,7 +82,7 @@ int verb_is_enabled(int argc, char *argv[], void *userdata) {
not_found = r == 0; /* Doesn't have SysV support or SYSV_UNIT_NOT_FOUND */ not_found = r == 0; /* Doesn't have SysV support or SYSV_UNIT_NOT_FOUND */
enabled = r == SYSV_UNIT_ENABLED; enabled = r == SYSV_UNIT_ENABLED;
if (install_client_side()) if (install_client_side()) {
STRV_FOREACH(name, names) { STRV_FOREACH(name, names) {
UnitFileState state; UnitFileState state;
@ -114,7 +114,9 @@ int verb_is_enabled(int argc, char *argv[], void *userdata) {
} }
} }
} }
else {
r = 0;
} else {
_cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL; _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
sd_bus *bus; sd_bus *bus;

View File

@ -214,7 +214,6 @@ IGNORE_SECTIONS = [
".eh_frame_hdr", ".eh_frame_hdr",
".ARM.exidx", ".ARM.exidx",
".relro_padding", ".relro_padding",
".sframe",
] ]
IGNORE_SECTION_TYPES = [ IGNORE_SECTION_TYPES = [