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

@@ -503,7 +503,7 @@ parse_args(int argc, char **argv, int *nargc, char ***nargv, char ***settingsp,
settings[j] = fmt_string(sudo_settings[i].name,
sudo_settings[i].value);
if (settings[j] == NULL)
fatalx(NULL);
fatal(NULL);
j++;
}
}