summaryrefslogtreecommitdiff
path: root/onlineupdate
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-02 03:37:55 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-02 07:33:03 +0200
commit9d3654668ec7d4a7e6e3627dde86093e8db18c0d (patch)
tree9b5d4499cbf550bef4a9d79bfe427b0cb35ef0fb /onlineupdate
parentc74fbd43362254bfaa1dd31069e40d23ceef9fa0 (diff)
updater: disable the special handling of the user profile
This should be unnecessary for the one step updating strategy. Change-Id: I8dddeae4fb4a560a1c261c0c2e84183d72fc638c Reviewed-on: https://gerrit.libreoffice.org/40656 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'onlineupdate')
-rw-r--r--onlineupdate/source/update/updater/updater.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/onlineupdate/source/update/updater/updater.cxx b/onlineupdate/source/update/updater/updater.cxx
index 08aa201cb47e..8a1ef8bf5b24 100644
--- a/onlineupdate/source/update/updater/updater.cxx
+++ b/onlineupdate/source/update/updater/updater.cxx
@@ -332,6 +332,8 @@ namespace {
bool is_userprofile_in_instdir()
{
+ return false;
+ /*
// the algorithm is:
// 1.) if userprofile path length is smaller than installation dir,
// the profile is surely not in instdir
@@ -350,6 +352,7 @@ bool is_userprofile_in_instdir()
return false;
return NS_tstrncmp(userprofile, gInstallDirPath, installdir_len) == 0;
+ */
}
}