summaryrefslogtreecommitdiff
path: root/protocols/Yahoo/src/file_transfer.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2013-01-05 15:07:22 +0000
committerGeorge Hazan <george.hazan@gmail.com>2013-01-05 15:07:22 +0000
commit7dc3df386f9b0fadc115ff55eefb8fbeb1c3077a (patch)
treec8162e48af58f6d4ee4667cd6ca6400d01a9f7e5 /protocols/Yahoo/src/file_transfer.cpp
parent3cd763c7a9c62bfb1c1dc43246b2199ee9427e92 (diff)
- fix for Unicode popups;
- code cleaning git-svn-id: http://svn.miranda-ng.org/main/trunk@2980 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/file_transfer.cpp')
-rw-r--r--protocols/Yahoo/src/file_transfer.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/protocols/Yahoo/src/file_transfer.cpp b/protocols/Yahoo/src/file_transfer.cpp
index 0cc2f4ba8c..55a9db1c26 100644
--- a/protocols/Yahoo/src/file_transfer.cpp
+++ b/protocols/Yahoo/src/file_transfer.cpp
@@ -44,12 +44,12 @@ static y_filetransfer* new_ft(CYahooProto* ppro, int id, HANDLE hContact, const
ft->cancel = 0;
ft->y7 = y7;
- ft->hWaitEvent = CreateEvent( NULL, FALSE, FALSE, NULL );
+ ft->hWaitEvent = CreateEvent( NULL, FALSE, FALSE, NULL);
ft->pfts.cbSize = sizeof(PROTOFILETRANSFERSTATUS);
ft->pfts.hContact = hContact;
ft->pfts.flags = PFTS_TCHAR;
- ft->pfts.flags |= (sending != 0 ) ? PFTS_SENDING : PFTS_RECEIVING;
+ ft->pfts.flags |= (sending != 0) ? PFTS_SENDING : PFTS_RECEIVING;
ft->pfts.tszWorkingDir = NULL;
ft->pfts.currentFileTime = 0;
@@ -171,7 +171,7 @@ static void upload_file(int id, int fd, int error, void *data)
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_SEQUENTIAL_SCAN,
0);
- if(myhFile !=INVALID_HANDLE_VALUE) {
+ if (myhFile !=INVALID_HANDLE_VALUE) {
DWORD lNotify = GetTickCount();
LOG(("proto: %s, hContact: %p", sf->ppro->m_szModuleName, sf->hContact));
@@ -196,7 +196,7 @@ static void upload_file(int id, int fd, int error, void *data)
} else
size += rw;
- if(GetTickCount() >= lNotify + 500 || rw < 1024 || size == fi->filesize) {
+ if (GetTickCount() >= lNotify + 500 || rw < 1024 || size == fi->filesize) {
LOG(("DOING UI Notify. Got %lu/%lu", size, fi->filesize));
sf->pfts.totalProgress = size;
sf->pfts.currentFileProgress = size;
@@ -319,7 +319,7 @@ static void dl_file(int id, int fd, int error, const char *filename, unsigned lo
ResetEvent(sf->hWaitEvent);
- if ( sf->ppro->SendBroadcast( sf->hContact, ACKTYPE_FILE, ACKRESULT_FILERESUME, sf, ( LPARAM )&sf->pfts )) {
+ if ( sf->ppro->SendBroadcast( sf->hContact, ACKTYPE_FILE, ACKRESULT_FILERESUME, sf, (LPARAM)&sf->pfts )) {
WaitForSingleObject( sf->hWaitEvent, INFINITE );
LOG(("[dl_file] Got action: %ld", sf->action));
@@ -351,7 +351,7 @@ static void dl_file(int id, int fd, int error, const char *filename, unsigned lo
FILE_SHARE_WRITE,
NULL, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
- if(myhFile !=INVALID_HANDLE_VALUE) {
+ if (myhFile !=INVALID_HANDLE_VALUE) {
DWORD lNotify = GetTickCount();
SetEndOfFile(myhFile);
@@ -369,7 +369,7 @@ static void dl_file(int id, int fd, int error, const char *filename, unsigned lo
sf->pfts.totalProgress += dw;
sf->pfts.currentFileProgress += dw;
- if(GetTickCount() >= lNotify + 500 || dw <= 0 || rsize == size) {
+ if (GetTickCount() >= lNotify + 500 || dw <= 0 || rsize == size) {
LOG(("DOING UI Notify. Got %lu/%lu", rsize, size));
@@ -624,7 +624,7 @@ void ext_yahoo_send_file7info(int id, const char *me, const char *who, const cha
fi = (yahoo_file_info *) ft->files->data;
c = strrchr(fi->filename, '\\');
- if (c != NULL ) {
+ if (c != NULL) {
c++;
} else {
c = fi->filename;
@@ -637,7 +637,7 @@ void ext_yahoo_send_file7info(int id, const char *me, const char *who, const cha
ft->relay = strdup( inet_ntoa(*( PIN_ADDR )he->h_addr_list[0]));
LOG(("Got Relay IP: %s", ft->relay));
} else {
- ft->relay = strdup( "98.136.112.33" );
+ ft->relay = strdup("98.136.112.33");
LOG(("DNS Lookup failed. Using Relay IP: %s", ft->relay));
}
@@ -715,7 +715,7 @@ HANDLE __cdecl CYahooProto::SendFile( HANDLE hContact, const PROTOCHAR* szDescri
/*DebugLog("Getting Files");
- if ( ppszFiles[1] != NULL ) {
+ if ( ppszFiles[1] != NULL) {
MessageBoxA(NULL, "YAHOO protocol allows only one file to be sent at a time", "Yahoo", MB_OK | MB_ICONINFORMATION);
return 0;
}
@@ -732,7 +732,7 @@ HANDLE __cdecl CYahooProto::SendFile( HANDLE hContact, const PROTOCHAR* szDescri
char *s;
while (ppszFiles[i] != NULL) {
- if ( _tstat( ppszFiles[i], &statbuf ) == 0 )
+ if ( _tstat( ppszFiles[i], &statbuf ) == 0)
tFileSize = statbuf.st_size;
fi = y_new(struct yahoo_file_info,1);
@@ -837,7 +837,7 @@ int __cdecl CYahooProto::FileDeny( HANDLE /*hContact*/, HANDLE hTransfer, const
DebugLog("[YahooFileDeny]");
- if ( !m_bLoggedIn || ft == NULL ) {
+ if ( !m_bLoggedIn || ft == NULL) {
DebugLog("[YahooFileDeny] Not logged-in or some other error!");
return 1;
}
@@ -867,7 +867,7 @@ int __cdecl CYahooProto::FileResume( HANDLE hTransfer, int* action, const PROTOC
DebugLog("[YahooFileResume] Action: %d", *action);
- if ( !m_bLoggedIn || ft == NULL ) {
+ if ( !m_bLoggedIn || ft == NULL) {
DebugLog("[YahooFileResume] Not loggedin or some other error!");
return 1;
}