summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_no_check_updates.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-02-18 09:22:33 -0500
committerB Stack <bgstack15@gmail.com>2020-02-18 09:22:33 -0500
commite77837568585ad26e96f82aae105f367869195cc (patch)
tree0094d2d89d90d4ffe31b7f1a6d0708bb3d21f933 /freefilesync/ffs_no_check_updates.patch
parentfix #14: document ffs sound workaround (diff)
downloadstackrpms-e77837568585ad26e96f82aae105f367869195cc.tar.gz
stackrpms-e77837568585ad26e96f82aae105f367869195cc.tar.bz2
stackrpms-e77837568585ad26e96f82aae105f367869195cc.zip
freefilesync 10.20 rpm rc1
Diffstat (limited to 'freefilesync/ffs_no_check_updates.patch')
-rw-r--r--freefilesync/ffs_no_check_updates.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/freefilesync/ffs_no_check_updates.patch b/freefilesync/ffs_no_check_updates.patch
index eaff5c4..bb54677 100644
--- a/freefilesync/ffs_no_check_updates.patch
+++ b/freefilesync/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