diff options
author | George Hazan <george.hazan@gmail.com> | 2013-08-15 08:01:11 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-08-15 08:01:11 +0000 |
commit | c68165979e5741aa201a9ac951e37fee4ca362cc (patch) | |
tree | 61313e23466d16a31904b442ca2ee20f738926c9 /plugins | |
parent | 6082f8c569cd3df0ebdcec61a223027868207473 (diff) |
we use bin2hex now instead of mir_snprintf("%02x")
git-svn-id: http://svn.miranda-ng.org/main/trunk@5699 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/CmdLine/src/utils.cpp | 64 | ||||
-rw-r--r-- | plugins/Exchange/src/utils.cpp | 53 | ||||
-rw-r--r-- | plugins/PluginUpdater/src/checksum.cpp | 5 | ||||
-rw-r--r-- | plugins/YAMN/src/proto/pop3/pop3.cpp | 12 |
4 files changed, 46 insertions, 88 deletions
diff --git a/plugins/CmdLine/src/utils.cpp b/plugins/CmdLine/src/utils.cpp index 37514b60d9..6f0dba3271 100644 --- a/plugins/CmdLine/src/utils.cpp +++ b/plugins/CmdLine/src/utils.cpp @@ -47,7 +47,7 @@ int Log(char *format, ...) strftime(str, sizeof(str), "%d %b %Y @ %H:%M:%S: ", now);
fputs(str, fout);
va_start(vararg, format);
-
+
tBytes = mir_vsnprintf(str, sizeof(str), format, vararg);
if (tBytes > 0)
{
@@ -77,7 +77,7 @@ int Info(char *title, char *format, ...) str[tBytes] = 0;
}
va_end(vararg);
- return MessageBoxA(0, str, title, MB_OK | MB_ICONINFORMATION);
+ return MessageBoxA(0, str, title, MB_OK | MB_ICONINFORMATION);
}
int MyPUShowMessage(char *lpzText, BYTE kind)
@@ -88,7 +88,7 @@ int MyPUShowMessage(char *lpzText, BYTE kind) }
else{
char *title = (kind == SM_NOTIFY) ? Translate("Notify") : Translate("Warning");
-
+
return MessageBox(NULL, lpzText, title, MB_OK | (kind == SM_NOTIFY) ? MB_ICONINFORMATION : MB_ICONEXCLAMATION);
}
}
@@ -101,16 +101,8 @@ char *BinToHex(int size, PBYTE data) char buffer[32] = {0}; //should be more than enough
int maxSize = size * 2 + HEX_SIZE + 1;
szresult = (char *) new char[ maxSize ];
- memset(szresult, 0, maxSize);
- mir_snprintf(buffer, SIZEOF(buffer), "%0*X", HEX_SIZE, size);
- strcpy(szresult, buffer);
- int i;
- for (i = 0; i < size; i++)
- {
- mir_snprintf(buffer, SIZEOF(buffer), "%02X", data[i]);
- strcpy(szresult + (HEX_SIZE + i * 2), buffer);
- }
- return szresult;
+ mir_snprintf(szresult, maxSize, "%0*X", HEX_SIZE, size);
+ return bin2hex(data, size, szresult + HEX_SIZE);
}
void HexToBin(char *inData, ULONG &size, LPBYTE &outData)
@@ -210,14 +202,14 @@ int GetStringFromDatabase(char *szSettingName, WCHAR *szError, WCHAR *szResult, return GetStringFromDatabase(NULL, ModuleName, szSettingName, szError, szResult, count);
}
-#pragma warning (disable: 4312)
+#pragma warning (disable: 4312)
TCHAR *GetContactName(HANDLE hContact, char *szProto)
{
CONTACTINFO ctInfo;
INT_PTR ret;
char proto[200];
-
- ZeroMemory((void *) &ctInfo, sizeof(ctInfo));
+
+ ZeroMemory((void *) &ctInfo, sizeof(ctInfo));
ctInfo.cbSize = sizeof(ctInfo);
if (szProto)
{
@@ -230,7 +222,7 @@ TCHAR *GetContactName(HANDLE hContact, char *szProto) ctInfo.dwFlag = CNF_DISPLAY;
#ifdef _UNICODE
ctInfo.dwFlag += CNF_UNICODE;
-#endif
+#endif
ctInfo.hContact = hContact;
//_debug_message("retrieving contact name for %d", hContact);
ret = CallService(MS_CONTACT_GETCONTACTINFO, 0, (LPARAM) &ctInfo);
@@ -252,7 +244,7 @@ TCHAR *GetContactName(HANDLE hContact, char *szProto) }
#pragma warning (default: 4312)
-#pragma warning (disable: 4312)
+#pragma warning (disable: 4312)
void GetContactProto(HANDLE hContact, char *szProto, size_t size)
{
GetStringFromDatabase(hContact, "Protocol", "p", NULL, szProto, size);
@@ -273,7 +265,7 @@ TCHAR *GetContactID(HANDLE hContact, char *szProto) CONTACTINFO ctInfo;
INT_PTR ret;
- ZeroMemory((void *) &ctInfo, sizeof(ctInfo));
+ ZeroMemory((void *) &ctInfo, sizeof(ctInfo));
ctInfo.cbSize = sizeof(ctInfo);
ctInfo.szProto = szProto;
ctInfo.dwFlag = CNF_UNIQUEID;
@@ -292,35 +284,35 @@ TCHAR *GetContactID(HANDLE hContact, char *szProto) {
mir_sntprintf(tmp, SIZEOF(tmp), _T("%d"), ctInfo.bVal);
buffer = _tcsdup(tmp);
-
+
break;
}
-
+
case CNFT_WORD:
{
mir_sntprintf(tmp, SIZEOF(tmp), _T("%d"), ctInfo.wVal);
buffer = _tcsdup(tmp);
-
+
break;
}
-
+
case CNFT_DWORD:
{
mir_sntprintf(tmp, SIZEOF(tmp), _T("%ld"), ctInfo.dVal);
buffer = _tcsdup(tmp);
-
+
break;
}
-
+
case CNFT_ASCIIZ:
default:
{
buffer = _tcsdup(ctInfo.pszVal);
-
+
break;
}
}
-
+
}
mir_free(ctInfo.pszVal);
@@ -345,18 +337,18 @@ HANDLE GetContactFromID(TCHAR *szID, char *szProto) for (HANDLE hContact = db_find_first(); hContact; hContact = db_find_next(hContact)) {
GetContactProto(hContact, cProtocol, sizeof(cProtocol));
TCHAR *szHandle = GetContactID(hContact, cProtocol);
-
+
tmp = (char *) CallService(MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM) hContact, 0);
STRNCPY(dispName, tmp, sizeof(dispName));
-
+
if ((szHandle) && ((_tcsicmp(szHandle, szID) == 0) || (_tcsicmp(dispName, szID) == 0)) && ((szProto == NULL) || (_stricmp(szProto, cProtocol) == 0)))
found = 1;
if (szHandle) free(szHandle);
-
+
if (found) return hContact;
}
-
+
return NULL;
}
#pragma warning (default: 4312)
@@ -388,7 +380,7 @@ void AnchorMoveWindow(HWND window, const WINDOWPOS *parentPos, int anchors) {
RECT rParent;
RECT rChild;
-
+
if (parentPos->flags & SWP_NOSIZE)
{
return;
@@ -421,10 +413,10 @@ RECT AnchorCalcPos(HWND window, const RECT *rParent, const WINDOWPOS *parentPos, rTmp.right = (parentPos->x + parentPos->cx) - rParent->right;
rTmp.bottom = (parentPos->y + parentPos->cy) - rParent->bottom;
rTmp.top = parentPos->y - rParent->top;
-
+
cx = (rTmp.left) ? -rTmp.left : rTmp.right;
- cy = (rTmp.top) ? -rTmp.top : rTmp.bottom;
-
+ cy = (rTmp.top) ? -rTmp.top : rTmp.bottom;
+
rChild.right += cx;
rChild.bottom += cy;
//expanded the window accordingly, now we need to enforce the anchors
@@ -451,6 +443,6 @@ inline char *STRNCPY(char *output, const char *input, size_t size) {
char *res = strncpy(output, input, size);
output[size - 1] = 0;
-
+
return res;
}
\ No newline at end of file diff --git a/plugins/Exchange/src/utils.cpp b/plugins/Exchange/src/utils.cpp index 0e5adb4831..b3b5da1217 100644 --- a/plugins/Exchange/src/utils.cpp +++ b/plugins/Exchange/src/utils.cpp @@ -45,7 +45,7 @@ int Log(char *format, ...) }
va_start(vararg, format);
-
+
tBytes = mir_vsnprintf(str, sizeof(str), format, vararg);
if (tBytes > 0)
{
@@ -75,7 +75,7 @@ int Info(char *title, char *format, ...) str[tBytes] = 0;
}
va_end(vararg);
- return MessageBoxA(0, str, title, MB_OK | MB_ICONINFORMATION);
+ return MessageBoxA(0, str, title, MB_OK | MB_ICONINFORMATION);
}
#define HEX_SIZE 8
@@ -86,36 +86,9 @@ char *BinToHex(int size, PBYTE data) char buffer[32] = {0}; //should be more than enough
int maxSize = size * 2 + HEX_SIZE + 1;
szresult = (char *) new char[ maxSize ];
- memset(szresult, 0, maxSize);
- mir_snprintf(buffer, SIZEOF(buffer), "%0*X", HEX_SIZE, size);
- strcpy(szresult, buffer);
- int i;
- for (i = 0; i < size; i++)
- {
- mir_snprintf(buffer, SIZEOF(buffer), "%02X", data[i]);
- strcpy(szresult + (HEX_SIZE + i * 2), buffer);
- }
- return szresult;
-}
-/*
-TCHAR *BinToHex(int size, PBYTE data)
-{
- TCHAR *szresult = NULL;
- TCHAR buffer[32] = {0}; //should be more than enough
- int maxSize = size * 2 + HEX_SIZE + 1;
- szresult = (TCHAR *) new TCHAR[ maxSize ];
- memset(szresult, 0, maxSize);
- mir_sntprintf(buffer,_countof(buffer), _T("%0*X"), HEX_SIZE, size);
- _tcsncpy(szresult, buffer,_countof(buffer));
- int i;
- for (i = 0; i < size; i++)
- {
- mir_sntprintf(buffer, _countof(buffer),_T("%02X"), data[i]);
- _tcsncpy(szresult + (HEX_SIZE + i * 2), buffer,_countof(buffer));
- }
- return szresult;
+ mir_snprintf(szresult, maxSize, "%0*X", HEX_SIZE, size);
+ return bin2hex(data, size, szresult + HEX_SIZE);
}
-*/
void HexToBin(TCHAR *inData, ULONG &size, LPBYTE &outData)
{
@@ -179,7 +152,7 @@ void AnchorMoveWindow(HWND window, const WINDOWPOS *parentPos, int anchors) {
RECT rParent;
RECT rChild;
-
+
if (parentPos->flags & SWP_NOSIZE)
{
return;
@@ -212,10 +185,10 @@ RECT AnchorCalcPos(HWND window, const RECT *rParent, const WINDOWPOS *parentPos, rTmp.right = (parentPos->x + parentPos->cx) - rParent->right;
rTmp.bottom = (parentPos->y + parentPos->cy) - rParent->bottom;
rTmp.top = parentPos->y - rParent->top;
-
+
cx = (rTmp.left) ? -rTmp.left : rTmp.right;
- cy = (rTmp.top) ? -rTmp.top : rTmp.bottom;
-
+ cy = (rTmp.top) ? -rTmp.top : rTmp.bottom;
+
rChild.right += cx;
rChild.bottom += cy;
//expanded the window accordingly, now we need to enforce the anchors
@@ -241,17 +214,17 @@ RECT AnchorCalcPos(HWND window, const RECT *rParent, const WINDOWPOS *parentPos, DWORD WINAPI CheckEmailWorkerThread(LPVOID data)
{
EnterCriticalSection(&csCheck);
-
+
int bForceAttempt = (int) data;
-
+
if (!exchangeServer.IsConnected())
{
exchangeServer.Connect(bForceAttempt);
}
exchangeServer.Check(bForceAttempt);
-
+
LeaveCriticalSection(&csCheck);
-
+
return 0;
}
@@ -260,7 +233,7 @@ int ThreadCheckEmail(int bForceAttempt) DWORD idThread;
HANDLE hCheckThread = CreateThread(NULL, NULL, CheckEmailWorkerThread, (void *) bForceAttempt, 0, &idThread);
CloseHandle(hCheckThread);
-
+
return 0;
}
diff --git a/plugins/PluginUpdater/src/checksum.cpp b/plugins/PluginUpdater/src/checksum.cpp index 9d0a38bcaa..cda58f10eb 100644 --- a/plugins/PluginUpdater/src/checksum.cpp +++ b/plugins/PluginUpdater/src/checksum.cpp @@ -269,9 +269,6 @@ LBL_NotPE: BYTE digest[16];
mir_md5_finish(&pms, digest);
-
- for (int i=0; i < sizeof(digest); i++)
- sprintf(szDest + i*2, "%02x", digest[i]); //!!!!!!!!!!!
-
+ bin2hex(digest, sizeof(digest), szDest);
return RESULT_OK;
}
diff --git a/plugins/YAMN/src/proto/pop3/pop3.cpp b/plugins/YAMN/src/proto/pop3/pop3.cpp index 8ca1f2bfb2..a66c85e7af 100644 --- a/plugins/YAMN/src/proto/pop3/pop3.cpp +++ b/plugins/YAMN/src/proto/pop3/pop3.cpp @@ -238,7 +238,6 @@ char* CPop3Client::APOP(char* name, char* pw, char* timestamp) char query[512]; char *Result; unsigned char digest[16]; - char hexdigest[40]; if (timestamp==NULL) throw POP3Error=(DWORD)EPOP3_APOP; @@ -247,13 +246,10 @@ char* CPop3Client::APOP(char* name, char* pw, char* timestamp) mir_md5_append(&ctx,(const unsigned char *)timestamp,(unsigned int)strlen(timestamp)); mir_md5_append(&ctx,(const unsigned char *)pw,(unsigned int)strlen(pw)); mir_md5_finish(&ctx, digest); - hexdigest[0]='\0'; - for (int i=0; i < 16; i++) { - char tmp[4]; - mir_snprintf(tmp, SIZEOF(tmp), "%02x", digest[i]); - strcat(hexdigest, tmp); - } - mir_snprintf(query, SIZEOF(query), "APOP %s %s\r\n", name, hexdigest); +
+ char hexdigest[40]; + mir_snprintf(query, SIZEOF(query), "APOP %s %s\r\n", name, bin2hex(digest, sizeof(digest), hexdigest)); + NetClient->Send(query); Result=RecvRest(NetClient->Recv(),POP3_SEARCHACK); if (AckFlag==POP3_FERR) |