From d837a11388ca1c29ce9f495832e52e0809b601de Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Wed, 6 Jan 2016 13:56:47 +0100 Subject: store the URL in the crash ini file Change-Id: I1b5f29f864d01c238f2e21de87dde8005236f332 Reviewed-on: https://gerrit.libreoffice.org/22564 Reviewed-by: Markus Mohrhard Tested-by: Markus Mohrhard --- desktop/source/app/sofficemain.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'desktop/source/app/sofficemain.cxx') diff --git a/desktop/source/app/sofficemain.cxx b/desktop/source/app/sofficemain.cxx index 742bbba879cd..b1b7dba113c5 100644 --- a/desktop/source/app/sofficemain.cxx +++ b/desktop/source/app/sofficemain.cxx @@ -99,6 +99,7 @@ extern "C" int DESKTOP_DLLPUBLIC soffice_main() std::ofstream minidump_file(ini_path, std::ios_base::trunc); minidump_file << "ProductName=LibreOffice\n"; minidump_file << "Version=" << LIBO_VERSION_DOTTED << "\n"; + minidump_file << "URL=" << "http://127.0.0.1:8000/submit" << "\n"; minidump_file.close(); #if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID -- cgit