Skip to content

Commit

Permalink
rtld_c18n: Fix copy/paste typo in _rtld_safebox_code error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
bsdjhb committed Dec 11, 2024
1 parent d7a2fff commit cbfbd80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libexec/rtld-elf/aarch64/rtld_c18n_machdep.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ _rtld_safebox_code(void *target, struct func_sig sig)

if (!func_sig_legal(sig)) {
_rtld_error(
"_rtld_sandbox_code: Invalid signature "
"_rtld_safebox_code: Invalid signature "
C18N_SIG_FORMAT_STRING,
C18N_SIG_FORMAT(sig));
return (NULL);
Expand All @@ -229,7 +229,7 @@ _rtld_safebox_code(void *target, struct func_sig sig)
obj = obj_from_addr(target);
if (obj == NULL) {
_rtld_error(
"_rtld_sandbox_code: "
"_rtld_safebox_code: "
"%#p does not belong to any object", target);
return (NULL);
}
Expand Down

0 comments on commit cbfbd80

Please sign in to comment.