summaryrefslogtreecommitdiff
path: root/sys/compat/svr4
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-09-19 13:28:44 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-09-19 13:28:44 +0000
commita14e66eb06beecc979cc0e82422b3a30dbbb418a (patch)
tree1592ab409992bb59ea3f362998c8400cfa8e1cd4 /sys/compat/svr4
parent2a303517017b170aa9799ebf55bcfa1b06a8f77c (diff)
Unify elf32 and elf64 code with macros. This forced a renaming
of a few functions from elf32.
Diffstat (limited to 'sys/compat/svr4')
-rw-r--r--sys/compat/svr4/svr4_exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/svr4/svr4_exec.c b/sys/compat/svr4/svr4_exec.c
index f8a494d2bdf..257d5e36b43 100644
--- a/sys/compat/svr4/svr4_exec.c
+++ b/sys/compat/svr4/svr4_exec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: svr4_exec.c,v 1.11 2001/08/11 23:21:14 art Exp $ */
+/* $OpenBSD: svr4_exec.c,v 1.12 2001/09/19 13:28:43 art Exp $ */
/* $NetBSD: svr4_exec.c,v 1.16 1995/10/14 20:24:20 christos Exp $ */
/*
@@ -76,7 +76,7 @@ struct emul emul_svr4 = {
SVR4_AUX_ARGSIZ,
svr4_copyargs,
setregs,
- exec_elf_fixup,
+ exec_elf32_fixup,
svr4_sigcode,
svr4_esigcode,
};
@@ -90,7 +90,7 @@ svr4_copyargs(pack, arginfo, stack, argp)
{
AuxInfo *a;
- if (!(a = (AuxInfo *)elf_copyargs(pack, arginfo, stack, argp)))
+ if (!(a = (AuxInfo *)elf32_copyargs(pack, arginfo, stack, argp)))
return (NULL);
#ifdef SVR4_COMPAT_SOLARIS2
if (pack->ep_emul_arg) {