diff options
author | B Stack <bgstack15@gmail.com> | 2019-09-18 10:46:56 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-09-18 10:46:56 -0400 |
commit | 57de308259b4d086e6623cd00591f02f63226d46 (patch) | |
tree | 81cc22424cbc7a16280c629306e150b2b3be753e | |
parent | add upstream 10.16 (diff) | |
download | FreeFileSync-57de308259b4d086e6623cd00591f02f63226d46.tar.gz FreeFileSync-57de308259b4d086e6623cd00591f02f63226d46.tar.bz2 FreeFileSync-57de308259b4d086e6623cd00591f02f63226d46.zip |
update bugs.txt after re-release from upstream
https://freefilesync.org/forum/viewtopic.php?t=6628
-rw-r--r--[-rwxr-xr-x] | Bugs.txt | 35 |
1 files changed, 23 insertions, 12 deletions
@@ -1,9 +1,12 @@ -When manually compiling FreeFileSync, you should also fix the following bugs in its dependent libraries: +When manually compiling FreeFileSync, you should also fix the following bugs in its dependent libraries. +FreeFileSync generally uses the latest library versions and works with upstream to get the bugs fixed +that affect FreeFileSync. Therefore it is not recommended to compile against older library versions than +the ones mentioned below. The remaining issues that are yet to be fixed are listed in the following: ----------------- -| libcurl Bugs | ----------------- +------------------ +| libcurl 7.66.0 | +------------------ __________________________________________________________________________________________________________ /lib/setopt.c https://github.com/curl/curl/pull/4321 @@ -112,6 +115,13 @@ https://github.com/curl/curl/pull/4332 __________________________________________________________________________________________________________ /lib/ftp.c +https://github.com/curl/curl/issues/4342 + +- result = ftp_nb_type(conn, TRUE, FTP_LIST_TYPE); ++ result = ftp_nb_type(conn, data->set.prefer_ascii, FTP_LIST_TYPE); + +__________________________________________________________________________________________________________ +/lib/ftp.c https://github.com/curl/curl/pull/4348 @@ -136,14 +146,15 @@ ________________________________________________________________________________ https://github.com/curl/curl/issues/4329 case SSL_ERROR_ZERO_RETURN: /* no more data */ -- /* close_notify alert */ -- connclose(conn, "TLS close_notify"); + /* close_notify alert */ ++ if(num == FIRSTSOCKET) + connclose(conn, "TLS close_notify"); __________________________________________________________________________________________________________ ----------------- -| libssh2 Bugs | ----------------- +----------------- +| libssh2 1.9.0 | +----------------- __________________________________________________________________________________________________________ move the following constants from src/sftp.h to include/libssh2_sftp.h: #define MAX_SFTP_OUTGOING_SIZE 30000 @@ -151,9 +162,9 @@ move the following constants from src/sftp.h to include/libssh2_sftp.h: __________________________________________________________________________________________________________ ------------------- -| wxWidgets Bugs | ------------------- +------------------------------- +| wxWidgets master 2019-07-22 | +------------------------------- __________________________________________________________________________________________________________ Fix incorrect pane height calculations: |