1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Returning an uninitialized error is a bad thing.

MFC after:	3 days
This commit is contained in:
Cy Schubert 2019-08-04 12:47:35 +00:00
parent 3f894e9850
commit ded28caa5e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=350567

View File

@ -310,7 +310,7 @@ ipf_modunload()
printf("%s unloaded\n", ipfilter_version);
return error;
return (0);
}