diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-27 16:05:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-27 16:05:18 +0000 |
commit | c5e9ee462edc701924e0b378df1404759f9ee0fb (patch) | |
tree | 714ea38805adcef600ac02f021a726169ff31718 /plugins/YAMN/proto/pop3/pop3.cpp | |
parent | 5c64f7b180825e9fa39a394a713de13765e50291 (diff) |
YAMN adaptation for the modern Miranda
git-svn-id: http://svn.miranda-ng.org/main/trunk@198 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAMN/proto/pop3/pop3.cpp')
-rw-r--r-- | plugins/YAMN/proto/pop3/pop3.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/YAMN/proto/pop3/pop3.cpp b/plugins/YAMN/proto/pop3/pop3.cpp index 8186406124..152eda6bb2 100644 --- a/plugins/YAMN/proto/pop3/pop3.cpp +++ b/plugins/YAMN/proto/pop3/pop3.cpp @@ -25,7 +25,7 @@ #pragma warning( disable : 4290 ) -#include "..\..\yamn.h"
+#include "..\..\yamn.h" #include "pop3.h" extern "C" { @@ -258,7 +258,7 @@ char* CPop3Client::APOP(char* name, char* pw, char* timestamp) MD5Update(&ctx,(const unsigned char *)pw,(unsigned int)strlen(pw)); MD5Final(digest,&ctx); hexdigest[0]='\0'; - for(int i=0; i<16; i++) { + for (int i=0; i<16; i++) { char tmp[4]; sprintf(tmp, "%02x", digest[i]); strcat(hexdigest, tmp); |