Make sure we flush the buffers before leaving

This commit is contained in:
Laslo Hunhold 2017-08-08 22:06:21 +02:00
parent 0b1c60eea2
commit bed475cef1

View file

@ -829,7 +829,7 @@ serve(int insock)
shutdown(infd, SHUT_RD); shutdown(infd, SHUT_RD);
shutdown(infd, SHUT_WR); shutdown(infd, SHUT_WR);
close(infd); close(infd);
_exit(0); exit(0);
default: default:
/* close the connection in the parent */ /* close the connection in the parent */
close(infd); close(infd);
@ -1095,7 +1095,7 @@ main(int argc, char *argv[])
} }
serve(insock); serve(insock);
_exit(0); exit(0);
default: default:
while ((wpid = wait(&status)) > 0) while ((wpid = wait(&status)) > 0)
; ;