summaryrefslogtreecommitdiff
path: root/freefilesync/debian/patches/ffs_no_check_updates.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-02-15 15:36:35 -0500
committerB Stack <bgstack15@gmail.com>2020-02-15 15:36:35 -0500
commit6b099831dceebb0905fc91b133567ee416010a74 (patch)
treebf6e5e5c6b3e7a96aa36aeb9a899bb74ff6e17de /freefilesync/debian/patches/ffs_no_check_updates.patch
parentMerge branch 'mktrayicon-bump' into 'master' (diff)
downloadstackrpms-6b099831dceebb0905fc91b133567ee416010a74.tar.gz
stackrpms-6b099831dceebb0905fc91b133567ee416010a74.tar.bz2
stackrpms-6b099831dceebb0905fc91b133567ee416010a74.zip
WIP: freefilesync initial patches for 10.20
Diffstat (limited to 'freefilesync/debian/patches/ffs_no_check_updates.patch')
-rw-r--r--freefilesync/debian/patches/ffs_no_check_updates.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/freefilesync/debian/patches/ffs_no_check_updates.patch b/freefilesync/debian/patches/ffs_no_check_updates.patch
index eaff5c4..bb54677 100644
--- a/freefilesync/debian/patches/ffs_no_check_updates.patch
+++ b/freefilesync/debian/patches/ffs_no_check_updates.patch
@@ -61,10 +61,10 @@ diff --exclude '*.orig' -Naur 10.14-0/FreeFileSync/Source/ui/version_check.cpp 1
std::string getOnlineVersion(const std::vector<std::pair<std::string, std::string>>& postParams) //throw SysError
{
-- const std::string buffer = sendHttpPost(Zstr("https://api.freefilesync.org/latest_version"), postParams,
-- ffsUpdateCheckUserAgent, nullptr /*caCertFilePath*/, nullptr /*notifyUnbufferedIO*/).readAll(); //throw SysError
-+ const std::string buffer = "";
- return trimCpy(buffer);
+- const std::string response = sendHttpPost(Zstr("https://api.freefilesync.org/latest_version"), postParams,
+- ffsUpdateCheckUserAgent, nullptr /*caCertFilePath*/, nullptr /*notifyUnbufferedIO*/).readAll(); //throw SysError
++ const std::string response = "";
+ return trimCpy(response);
}
@@ -235,13 +235,13 @@
bgstack15