mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 11:53:48 +00:00
avrdude: Fix: Stray winsock usage on Windows
This commit is contained in:
@@ -311,8 +311,10 @@ static int ser_open(char * port, union pinfo pinfo, union filedescriptor *fdp)
|
|||||||
static void ser_close(union filedescriptor *fd)
|
static void ser_close(union filedescriptor *fd)
|
||||||
{
|
{
|
||||||
if (serial_over_ethernet) {
|
if (serial_over_ethernet) {
|
||||||
|
#ifdef HAVE_LIBWS2_32
|
||||||
closesocket(fd->ifd);
|
closesocket(fd->ifd);
|
||||||
WSACleanup();
|
WSACleanup();
|
||||||
|
#endif
|
||||||
} else {
|
} else {
|
||||||
HANDLE hComPort=(HANDLE)fd->pfd;
|
HANDLE hComPort=(HANDLE)fd->pfd;
|
||||||
if (hComPort != INVALID_HANDLE_VALUE)
|
if (hComPort != INVALID_HANDLE_VALUE)
|
||||||
|
|||||||
Reference in New Issue
Block a user