diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-09-19 13:28:44 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-09-19 13:28:44 +0000 |
commit | a14e66eb06beecc979cc0e82422b3a30dbbb418a (patch) | |
tree | 1592ab409992bb59ea3f362998c8400cfa8e1cd4 /sys/compat/svr4 | |
parent | 2a303517017b170aa9799ebf55bcfa1b06a8f77c (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.c | 6 |
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) { |