avrdude: Fix: Stray winsock usage on Windows

This commit is contained in:
Vojtech Kral 2018-07-27 15:10:25 +02:00
parent a9aca4426c
commit 81a229045a

View file

@ -311,8 +311,10 @@ static int ser_open(char * port, union pinfo pinfo, union filedescriptor *fdp)
static void ser_close(union filedescriptor *fd)
{
if (serial_over_ethernet) {
#ifdef HAVE_LIBWS2_32
closesocket(fd->ifd);
WSACleanup();
#endif
} else {
HANDLE hComPort=(HANDLE)fd->pfd;
if (hComPort != INVALID_HANDLE_VALUE)