diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-03-13 18:35:03 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-03-13 18:35:03 +0000 |
commit | 323c342f3a9c6e4ae937d894ac1387590b007262 (patch) | |
tree | f27ecf6afd5637154ac2458bac9261d1067895c1 /lib/csu/mips64 | |
parent | 8a59d71f31abaa642f02dbeac92ab61c3cfcb3e1 (diff) |
crt0.c is already setting environ, so don't set it in MD_START_SETUP
ok kettenis@ mpi@
Diffstat (limited to 'lib/csu/mips64')
-rw-r--r-- | lib/csu/mips64/md_init.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/mips64/md_init.h b/lib/csu/mips64/md_init.h index 37625421c11..97e2d33d2b6 100644 --- a/lib/csu/mips64/md_init.h +++ b/lib/csu/mips64/md_init.h @@ -1,4 +1,4 @@ -/* $OpenBSD: md_init.h,v 1.11 2015/09/01 05:40:06 guenther Exp $ */ +/* $OpenBSD: md_init.h,v 1.12 2016/03/13 18:35:02 guenther Exp $ */ /*- * Copyright (c) 2001 Ross Harvey @@ -165,7 +165,7 @@ struct kframe { \ argc = kfp->kargc; \ argv = &kfp->kargv[0]; \ - environ = envp = argv + argc + 1; + envp = argv + argc + 1; #include <sys/syscall.h> #define MD_DISABLE_KBIND \ |