1999-03-09 Roland McGrath <roland@baalperazim.frob.com>

* hurd/hurdexec.c (_hurd_exec): Add missing `else' in last change.
This commit is contained in:
Roland McGrath 1999-03-09 09:21:54 +00:00
parent 5be4316ea2
commit 1d88de3d42
1 changed files with 1 additions and 1 deletions

View File

@ -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. */