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:
Brian Feldman 2004-10-05 23:49:27 +00:00
parent 59fdf30f92
commit 58f45f543a

View File

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