diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-04-01 15:13:31 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-04-01 15:13:31 +0000 |
commit | e8eaba2b25948c0e60f70c33c5c52aad70bbf5fc (patch) | |
tree | 020566c0ffd2d27131ee7bac45eea5560a4732bd /posix/tst-execle2.c | |
parent | e3166b6660ce5f0640242a4806a380bb651a2291 (diff) | |
download | glibc-e8eaba2b25948c0e60f70c33c5c52aad70bbf5fc.tar glibc-e8eaba2b25948c0e60f70c33c5c52aad70bbf5fc.tar.gz glibc-e8eaba2b25948c0e60f70c33c5c52aad70bbf5fc.tar.bz2 glibc-e8eaba2b25948c0e60f70c33c5c52aad70bbf5fc.zip |
Updated to fedora-glibc-20050401T1444
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) { |