return r;
}
-static int pakfire_stripper_extract_debug_sections(struct pakfire_stripper* self,
+static int pakfire_stripper_extract_debuginfo(struct pakfire_stripper* self,
struct pakfire_file* file, struct pakfire_elf* elf, const char* build_id_path) {
int r;
return 0;
}
-static int pakfire_stripper_strip_debug_sections(struct pakfire_stripper* self,
+static int pakfire_stripper_strip_debuginfo(struct pakfire_stripper* self,
struct pakfire_file* file, struct pakfire_elf* elf) {
const char* build_id = NULL;
char build_id_path[PATH_MAX];
if (r < 0)
goto ERROR;
- r = pakfire_stripper_extract_debug_sections(self, file, elf, build_id_path);
+ r = pakfire_stripper_extract_debuginfo(self, file, elf, build_id_path);
if (r < 0)
goto ERROR;
}
goto ERROR;
// Strip debug information
- r = pakfire_stripper_strip_debug_sections(self, file, elf);
+ r = pakfire_stripper_strip_debuginfo(self, file, elf);
if (r < 0)
goto ERROR;
}