summaryrefslogtreecommitdiffstats
path: root/sys/compat
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-04-17 07:55:15 +0000
committerpeter <peter@FreeBSD.org>1999-04-17 07:55:15 +0000
commitea1e34d0c957e00ae335d21b817cb316bfafa43e (patch)
treeb8658c77e19f709b6cadcb4240bf5bd9fb7ed5fa /sys/compat
parenteeaec3c191475424bae280c86a28f55d646d9e19 (diff)
downloadFreeBSD-src-ea1e34d0c957e00ae335d21b817cb316bfafa43e.zip
FreeBSD-src-ea1e34d0c957e00ae335d21b817cb316bfafa43e.tar.gz
Image activators use EXEC_SET(), not TEXT_SET(). (The first is a macro
wrapper for DECLARE_MODULE(), the second is a linker set declaration)
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/svr4/imgact_svr4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/svr4/imgact_svr4.c b/sys/compat/svr4/imgact_svr4.c
index 1324805..42ac305 100644
--- a/sys/compat/svr4/imgact_svr4.c
+++ b/sys/compat/svr4/imgact_svr4.c
@@ -233,5 +233,5 @@ exec_svr4_imgact(imgp)
* correct directive to use. Do not staticize; used by Linux LKM.
*/
const struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" };
-TEXT_SET(execsw_set, svr4_execsw);
+EXEC_SET(execsw_set, svr4_execsw);
OpenPOWER on IntegriCloud