diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-09-13 17:09:54 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-09-13 17:09:54 +0000 |
commit | a15dcedbbb0025b351b48d1fb1ff9ab21e29bd80 (patch) | |
tree | 502ba0db1449737a33ee421a3c4c38239b8d5f69 /sys/compat/svr4 | |
parent | 43c0a8989d10400a0bde9196c432a29ddbc68a51 (diff) |
Heh Per, SVR4 wants to load the ELF interpreter too, sometimes :-)
Diffstat (limited to 'sys/compat/svr4')
-rw-r--r-- | sys/compat/svr4/svr4_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_exec.c b/sys/compat/svr4/svr4_exec.c index 7639f8b0a21..e42f6d8053c 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.4 1996/08/31 09:24:05 pefo Exp $ */ +/* $OpenBSD: svr4_exec.c,v 1.5 1996/09/13 17:09:53 niklas Exp $ */ /* $NetBSD: svr4_exec.c,v 1.16 1995/10/14 20:24:20 christos Exp $ */ /* @@ -71,7 +71,7 @@ struct emul emul_svr4 = { SVR4_AUX_ARGSIZ, svr4_copyargs, setregs, - NULL, + exec_elf_fixup, svr4_sigcode, svr4_esigcode, }; |