mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:27:43 +00:00
Kernel: execve: find_elf_interpreter_for_executable: Fix dbgln
This commit is contained in:
parent
aa8cb35b90
commit
1fa9d9dd68
1 changed files with 1 additions and 1 deletions
|
@ -750,7 +750,7 @@ KResultOr<RefPtr<FileDescription>> Process::find_elf_interpreter_for_executable(
|
||||||
// If it's ET_DYN with no PT_INTERP, then it's a dynamic executable responsible
|
// If it's ET_DYN with no PT_INTERP, then it's a dynamic executable responsible
|
||||||
// for its own relocation (i.e. it's /usr/lib/Loader.so)
|
// for its own relocation (i.e. it's /usr/lib/Loader.so)
|
||||||
if (path != "/usr/lib/Loader.so")
|
if (path != "/usr/lib/Loader.so")
|
||||||
dbgln("exec({}): WARNING - Dynamic ELF executable without a PT_INTERP header, and isn't /usr/lib/Loader.so");
|
dbgln("exec({}): WARNING - Dynamic ELF executable without a PT_INTERP header, and isn't /usr/lib/Loader.so", path);
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue