minor RTIP adjustments

This commit is contained in:
Chris Conlon 2012-08-14 13:10:27 -06:00
parent 7ec04c16b6
commit 198e48fa94
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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