(accept_it): type-correctness on parameters to accept

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8933 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2000-08-10 20:20:34 +00:00
parent 4f70cbc0bb
commit c844d322e7

View File

@@ -48,7 +48,7 @@ accept_it (int s)
{
int s2;
s2 = accept(s, NULL, 0);
s2 = accept(s, NULL, NULL);
if(s2 < 0)
err (1, "accept");
close(s);