summaryrefslogtreecommitdiff
path: root/hurd/hurdexec.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-03-09 09:21:54 +0000
committerRoland McGrath <roland@gnu.org>1999-03-09 09:21:54 +0000
commit1d88de3d42277350f25a7651d0e6de1a40fe2cb1 (patch)
tree9943bdbd183381cade1bd3e32cb5253f55a2396d /hurd/hurdexec.c
parent5be4316ea2f4bb8a59a7861b5dd3c5ebfea6a715 (diff)
1999-03-09 Roland McGrath <roland@baalperazim.frob.com>
* hurd/hurdexec.c (_hurd_exec): Add missing `else' in last change.
Diffstat (limited to 'hurd/hurdexec.c')
-rw-r--r--hurd/hurdexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdexec.c b/hurd/hurdexec.c
index fa35ce7d1b..2a283563b8 100644
--- a/hurd/hurdexec.c
+++ b/hurd/hurdexec.c
@@ -55,7 +55,7 @@ _hurd_exec (task_t task, file_t file,
return err;
if (envp == NULL)
env = NULL, envlen = 0;
- if (err = __argz_create (envp, &env, &envlen))
+ else if (err = __argz_create (envp, &env, &envlen))
goto outargs;
/* Load up the ports to give to the new program. */