1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Merge pull request #2236 from disarray2077/patch-7

Fix Linux build
This commit is contained in:
Brian Fiete 2025-05-11 18:54:16 +02:00 committed by GitHub
commit 2de00c7132
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -495,7 +495,7 @@ namespace System.Net
if (bind(mHandle, &service, size) == SOCKET_ERROR)
{
#unwarn
int err = WSAGetLastError();
int err = GetLastError();
Close();
return .Err;
}