diff options
author | Alex Richardson <arichardson@FreeBSD.org> | 2021-05-11 09:52:56 +0000 |
---|---|---|
committer | Alex Richardson <arichardson@FreeBSD.org> | 2021-05-11 09:54:06 +0000 |
commit | 0d0eb707b43e2b222434a98265db1fe7c3e3f3a8 (patch) | |
tree | eaaac142112ec6d1b3be29b85fb8a0bad2deb053 | |
parent | 9f9c2745e8e7446c01b7e55679cb4fcb18634da1 (diff) | |
download | src-0d0eb707b43e2b222434a98265db1fe7c3e3f3a8.tar.gz src-0d0eb707b43e2b222434a98265db1fe7c3e3f3a8.zip |
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: 7daca4e2043f ("truss: improved support for decoding compat32 arguments")
(cherry picked from commit 3cbad8287aa0ed72e07df1130ce2ae490642e63a)
-rw-r--r-- | usr.bin/truss/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/truss/setup.c b/usr.bin/truss/setup.c index 31c20d656b6a..78be0c7f570f 100644 --- a/usr.bin/truss/setup.c +++ b/usr.bin/truss/setup.c @@ -106,7 +106,7 @@ static struct procabi freebsd32 = { .type = "FreeBSD32", .abi = SYSDECODE_ABI_FREEBSD32, .pointer_size = sizeof(uint32_t), - .compat_prefix = "freebsd32", + .compat_prefix = "freebsd32_", .extra_syscalls = STAILQ_HEAD_INITIALIZER(freebsd32.extra_syscalls), .syscalls = { NULL } }; |