diff options
-rw-r--r-- | tests/server/tftpd.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c index 4215bfe4a..fdd6e061e 100644 --- a/tests/server/tftpd.c +++ b/tests/server/tftpd.c @@ -821,11 +821,6 @@ int main(int argc, char **argv) sclose(peer); peer = CURL_SOCKET_BAD; - if(test.ofile > 0) { - close(test.ofile); - test.ofile = 0; - } - if(got_exit_signal) break; @@ -1304,6 +1299,10 @@ send_ack: } } while(size == SEGSIZE); write_behind(test, pf->f_convert); + if(test->ofile > 0) { + close(test->ofile); + test->ofile = 0; + } rap->th_opcode = htons((unsigned short)opcode_ACK); /* send the "final" ack */ |