text encoding fixed

This commit is contained in:
d1str4ught
2025-08-18 02:12:07 +02:00
parent da0a923cde
commit 34000c3306
484 changed files with 5767 additions and 5767 deletions

View File

@@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "constants.h"
#include "passpod.h"
@@ -46,7 +46,7 @@ int CPasspod::ConfirmPasspod( const char * account, const char * passpod )
char szResult[1024];
char szTmp[128];
int ret_code = 1; // 0 이 성공
int ret_code = 1; // 0 이 성공
snprintf( szRequest, sizeof(szRequest), "username=%s&systemname=%s&passpod=%s&algname=%s", account, servername, passpod, algname );
snprintf( szResult, sizeof(szResult), "POST %s%s HTTP/1.0\r\n", posspod_server, auth );
@@ -105,14 +105,14 @@ int CPasspod::ConfirmPasspod( const char * account, const char * passpod )
{
int n = 0;
//라인넘기기
//라인넘기기
for (; pos[n]!='\n'; ++n ) {}
//\n에서 멈추기 하나더 남겨주자
//\n에서 멈추기 하나더 남겨주자
pos = pos+n+1;
//Return Value 를 비교
//Return Value 를 비교
if ( 0 == strncmp( pos, "AUTH_SUCCESS", strlen(ERR_STRINGS[0]) ) )
{
ret_code = E_PASSPOD_SUCCESS;