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

Compare commits

...

2 Commits

Author SHA1 Message Date
Sam James
e65455fead elf2efi: ignore .sframe
SFrames are a new format for stack unwinding information. Ignore it if
preset as is done for .eh_frame.
2025-07-16 14:57:30 +02:00
Antonio Alvarez Feijoo
600bbac35f systemctl: remove unnecessary assignment 2025-07-16 21:03:10 +09:00
2 changed files with 3 additions and 4 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 */
enabled = r == SYSV_UNIT_ENABLED;
if (install_client_side()) {
if (install_client_side())
STRV_FOREACH(name, names) {
UnitFileState state;
@ -114,9 +114,7 @@ int verb_is_enabled(int argc, char *argv[], void *userdata) {
}
}
}
r = 0;
} else {
else {
_cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
sd_bus *bus;

View File

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