Fix a typo in r1.243: test for STACKALIGN not STACKLALIGN:

"If STACKALIGN is defined, use it instead of ALIGN.  Some arches need a
 stack more aligned that ALIGN will give."
This commit is contained in:
jmcneill 2011-08-26 12:52:01 +00:00
parent e3bc158053
commit 6051688a5b
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kern_exec.c,v 1.323 2011/08/26 09:29:16 reinoud Exp $ */ /* $NetBSD: kern_exec.c,v 1.324 2011/08/26 12:52:01 jmcneill Exp $ */
/*- /*-
* Copyright (c) 2008 The NetBSD Foundation, Inc. * Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -59,7 +59,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.323 2011/08/26 09:29:16 reinoud Exp $"); __KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.324 2011/08/26 12:52:01 jmcneill Exp $");
#include "opt_ktrace.h" #include "opt_ktrace.h"
#include "opt_modular.h" #include "opt_modular.h"
@ -780,7 +780,7 @@ execve1(struct lwp *l, const char *path, char * const *args,
len += (arc4random() % PAGE_SIZE); len += (arc4random() % PAGE_SIZE);
#endif /* PAX_ASLR */ #endif /* PAX_ASLR */
#ifdef STACKLALIGN /* arm, etc. */ #ifdef STACKALIGN /* arm, etc. */
len = STACKALIGN(len); /* make the stack "safely" aligned */ len = STACKALIGN(len); /* make the stack "safely" aligned */
#else #else
len = ALIGN(len); /* make the stack "safely" aligned */ len = ALIGN(len); /* make the stack "safely" aligned */