1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=136175

View File

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