Make sure we flush the buffers before leaving
This commit is contained in:
parent
0b1c60eea2
commit
bed475cef1
1 changed files with 2 additions and 2 deletions
4
quark.c
4
quark.c
|
@ -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)
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in a new issue