[vlc-commits] Win32: more dialogs when submitting the bug reports

Jean-Baptiste Kempf git at videolan.org
Thu May 19 23:44:26 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu May 19 23:42:34 2011 +0200| [f84dd14d1d66bef0b82acf65a5808e50e7801445] | committer: Jean-Baptiste Kempf

Win32: more dialogs when submitting the bug reports

Close #4798

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f84dd14d1d66bef0b82acf65a5808e50e7801445
---

 bin/winvlc.c |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/bin/winvlc.c b/bin/winvlc.c
index 0c6c29e..4017ddd 100644
--- a/bin/winvlc.c
+++ b/bin/winvlc.c
@@ -236,13 +236,25 @@ static void check_crashdump()
                     swprintf( remote_file, L"/crashs/%04d%02d%02d%02d%02d%02d",now.wYear,
                             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);
                 }
                 else
                     fprintf(stderr,"Can't connect to FTP server%d\n",GetLastError());
                 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);



More information about the vlc-commits mailing list