Change some fatalx(NULL) that should be fatal(NULL).

This commit is contained in:
Todd C. Miller
2013-08-15 13:06:49 -06:00
parent 4928c8c72e
commit 85fc5792d4
5 changed files with 16 additions and 16 deletions

View File

@@ -109,7 +109,7 @@ disable_execute(char *const envp[])
preload = fmt_string(RTLD_PRELOAD_VAR, sudo_conf_noexec_path());
# endif
if (preload == NULL)
fatalx(NULL);
fatal(NULL);
nenvp[env_len++] = preload;
nenvp[env_len] = NULL;
} else {