truss: Add missing underscore to compat_prefix for FreeBSD32
I accidentally dropped this in the final version of D27625, so it didn't
actually work as intended. I found this while testing the MFC to stable/13.
MFC after: immediately
Fixes: 7daca4e204
("truss: improved support for decoding compat32 arguments")
This commit is contained in:
parent
f6f297871d
commit
3cbad8287a
@ -106,7 +106,7 @@ static struct procabi freebsd32 = {
|
|||||||
.type = "FreeBSD32",
|
.type = "FreeBSD32",
|
||||||
.abi = SYSDECODE_ABI_FREEBSD32,
|
.abi = SYSDECODE_ABI_FREEBSD32,
|
||||||
.pointer_size = sizeof(uint32_t),
|
.pointer_size = sizeof(uint32_t),
|
||||||
.compat_prefix = "freebsd32",
|
.compat_prefix = "freebsd32_",
|
||||||
.extra_syscalls = STAILQ_HEAD_INITIALIZER(freebsd32.extra_syscalls),
|
.extra_syscalls = STAILQ_HEAD_INITIALIZER(freebsd32.extra_syscalls),
|
||||||
.syscalls = { NULL }
|
.syscalls = { NULL }
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user