summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/source/app/updater.cxx2
-rw-r--r--desktop/source/app/updater.hxx1
2 files changed, 1 insertions, 2 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx
index 6924a98c7235..1529036fe65b 100644
--- a/desktop/source/app/updater.cxx
+++ b/desktop/source/app/updater.cxx
@@ -501,7 +501,7 @@ void update_checker()
{
update_info aUpdateInfo = parse_response(response_body);
download_file(aUpdateInfo.aUpdateFile.aURL, aUpdateInfo.aUpdateFile.nSize, aUpdateInfo.aUpdateFile.aHash, "update.mar");
- CreateValidUpdateDir();
+ CreateValidUpdateDir(aUpdateInfo);
}
}
catch (const invalid_update_info&)
diff --git a/desktop/source/app/updater.hxx b/desktop/source/app/updater.hxx
index 410cc21b4de8..fab760516952 100644
--- a/desktop/source/app/updater.hxx
+++ b/desktop/source/app/updater.hxx
@@ -12,7 +12,6 @@
#include <rtl/ustring.hxx>
-void CreateValidUpdateDir();
void Update();
void update_checker();