Popravil sem metode AL_WireToHostFormat...() in AL_HostToWireFormat...(), da so preglednejše in da delujejo tudi, kadar je vklopljen "smaller type check".

Med registracijo sem dodal še ponovni zagon servisa EapHost.
This commit is contained in:
Simon Rozman 2014-05-05 06:02:56 +00:00
parent 540f671160
commit 6c78a47bda

View File

@ -406,8 +406,8 @@ HRESULT COpTaskCreate::Execute(CSession *pSession)
} }
// Convert numerical date to DMY (ULONGLONG -> FILETIME -> SYSTEMTIME). // Convert numerical date to DMY (ULONGLONG -> FILETIME -> SYSTEMTIME).
ftValue.dwHighDateTime = ullValue >> 32; ftValue.dwHighDateTime = (DWORD)((ullValue >> 32) & 0xffffffff);
ftValue.dwLowDateTime = ullValue & 0xffffffff; ftValue.dwLowDateTime = (DWORD)( ullValue & 0xffffffff);
::FileTimeToSystemTime(&ftValue, &stValue); ::FileTimeToSystemTime(&ftValue, &stValue);
// Set new trigger date and time. // Set new trigger date and time.