minor RTIP adjustments
This commit is contained in:
parent
7ec04c16b6
commit
198e48fa94
@ -7122,7 +7122,7 @@ int UnLockMutex(CyaSSL_Mutex* m)
|
||||
return BAD_MUTEX_ERROR;
|
||||
}
|
||||
|
||||
int UnlockMutex(CyaSSL_Mutex* m)
|
||||
int UnLockMutex(CyaSSL_Mutex* m)
|
||||
{
|
||||
rtp_sig_mutex_release(*m);
|
||||
return 0;
|
||||
|
4
src/io.c
4
src/io.c
@ -53,7 +53,7 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
#if !(defined(DEVKITPRO) || defined(THREADX)) || defined(EBSNET)
|
||||
#if !(defined(DEVKITPRO) || defined(THREADX) || defined(EBSNET))
|
||||
#include <sys/socket.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <netinet/in.h>
|
||||
@ -120,7 +120,7 @@ static INLINE int LastError(void)
|
||||
#ifdef USE_WINDOWS_API
|
||||
return WSAGetLastError();
|
||||
#elif defined(EBSNET)
|
||||
return un_getlasterror();
|
||||
return xn_getlasterror();
|
||||
#else
|
||||
return errno;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user