From 68dc949774cb651d53541df4abdc60327f7e096b Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Thu, 13 Jan 2011 16:21:55 -0500 Subject: Fix check-execstack test --- elf/check-execstack.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'elf/check-execstack.c') diff --git a/elf/check-execstack.c b/elf/check-execstack.c index 64353751e9..96e481208d 100644 --- a/elf/check-execstack.c +++ b/elf/check-execstack.c @@ -26,7 +26,7 @@ #include #include #include -#include +#include "check-execstack.h" #ifdef BITS @@ -92,8 +92,13 @@ AB(handle_file) (const char *fname, int fd) return 0; } - printf ("%s: no PT_GNU_STACK entry\n", fname); - return 1; + if (DEFAULT_STACK_PERMS & PF_X) + { + printf ("%s: no PT_GNU_STACK entry\n", fname); + return 1; + } + + return 0; } # undef BITS @@ -151,13 +156,8 @@ main (int argc, char *argv[]) int cnt; int result = 0; - /* We can return successfully, i.e., not fail, if PF_X isn't present. If it - * is present then check for the GNU_STACK header. */ - if (DEFAULT_STACK_PERMS & PF_X) - { - for (cnt = 1; cnt < argc; ++cnt) - result |= handle_file (argv[cnt]); - } + for (cnt = 1; cnt < argc; ++cnt) + result |= handle_file (argv[cnt]); return result; } #endif -- cgit v1.2.3