Commit f84dd14d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: more dialogs when submitting the bug reports

Close #4798
parent 1fe559b7
...@@ -236,13 +236,25 @@ static void check_crashdump() ...@@ -236,13 +236,25 @@ static void check_crashdump()
swprintf( remote_file, L"/crashs/%04d%02d%02d%02d%02d%02d",now.wYear, swprintf( remote_file, L"/crashs/%04d%02d%02d%02d%02d%02d",now.wYear,
now.wMonth, now.wDay, now.wHour, now.wMinute, now.wSecond ); now.wMonth, now.wDay, now.wHour, now.wMinute, now.wSecond );
FtpPutFile( ftp, wdir, remote_file, FTP_TRANSFER_TYPE_BINARY, 0); if( FtpPutFile( ftp, wdir, remote_file, FTP_TRANSFER_TYPE_BINARY, 0) )
MessageBox( NULL, L"Report sent correctly. Thanks a lot for the help.",
L"Report sent", MB_OK);
else
MessageBox( NULL, L"There was an issue while transferring to the FTP server. "\
"Thanks a lot for the help anyway.",
L"Report sent", MB_OK);
InternetCloseHandle(ftp); InternetCloseHandle(ftp);
} }
else else
fprintf(stderr,"Can't connect to FTP server%d\n",GetLastError()); fprintf(stderr,"Can't connect to FTP server%d\n",GetLastError());
InternetCloseHandle(Hint); InternetCloseHandle(Hint);
} }
else
{
MessageBox( NULL, L"There was an issue while connecting to Internet. "\
"Thanks a lot for the help anyway.",
L"Report sent", MB_OK);
}
} }
_wremove(wdir); _wremove(wdir);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment