diff options
author | Roland McGrath <roland@gnu.org> | 2005-03-29 23:27:01 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-03-29 23:27:01 +0000 |
commit | 56abfa6be51f56c201b3fc7ae017becc0a720053 (patch) | |
tree | fd913f4f02035ea1dca41a1d8e76be26bab36f0c /posix/tst-execle2.c | |
parent | 52febb73162d62bc09db1faf737b1ed3f295cc7c (diff) | |
download | glibc-56abfa6be51f56c201b3fc7ae017becc0a720053.tar.gz glibc-56abfa6be51f56c201b3fc7ae017becc0a720053.tar.xz glibc-56abfa6be51f56c201b3fc7ae017becc0a720053.zip |
2005-03-29 Thorsten Kukuk <kukuk@suse.de>
* posix/tst-execle1.c (do_test): Fix execle arguments. * posix/tst-execle2.c (do_test): Likewise.
Diffstat (limited to 'posix/tst-execle2.c')
-rw-r--r-- | posix/tst-execle2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/posix/tst-execle2.c b/posix/tst-execle2.c index fb9b09b423..002d4c938f 100644 --- a/posix/tst-execle2.c +++ b/posix/tst-execle2.c @@ -45,8 +45,9 @@ prepare (int argc, char *argv[]) static int do_test (void) { + char *env[] = {"FOO=BAR", NULL}; errno = 0; - execle (copy, copy, NULL, "FOO=BAR", NULL); + execle (copy, copy, NULL, env); if (errno != EACCES) { |