Make sure to return 0 from kernel_getnfile() since if there were an

error, it would exit() (and it needs to return a value).
This commit is contained in:
green 2004-10-05 23:49:27 +00:00
parent 626003d727
commit 481a4ac3e6

View File

@ -60,4 +60,5 @@ kernel_getnfile(const char *unused, char ***defaultEs)
npe->value = -1;
*defaultEs = excludes;
return (0);
}