Kaydet (Commit) 1a25f74b authored tarafından Markus Mohrhard's avatar Markus Mohrhard

fix the minidump_upload script to send correct http header

Change-Id: Ie373992ca9d69fec508778947a983fad56924a60
Reviewed-on: https://gerrit.libreoffice.org/22550Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMarkus Mohrhard <markus.mohrhard@googlemail.com>
üst 262eddce
......@@ -11,4 +11,8 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,breakpad))
$(eval $(call gb_UnpackedTarball_set_tarball,breakpad,$(BREAKPAD_TARBALL)))
$(eval $(call gb_UnpackedTarball_add_patches,breakpad,\
external/breakpad/breakpad-use-correct-http-header.patch.1 \
))
# vim: set noet sw=4 ts=4:
diff -ur breakpad.org/src/tools/linux/symupload/minidump_upload.cc breakpad/src/tools/linux/symupload/minidump_upload.cc
--- breakpad.org/src/tools/linux/symupload/minidump_upload.cc 2015-11-23 17:37:53.830558138 +0100
+++ breakpad/src/tools/linux/symupload/minidump_upload.cc 2015-11-23 17:38:59.559051874 +0100
@@ -59,8 +59,8 @@
static void Start(Options *options) {
std::map<string, string> parameters;
// Add parameters
- parameters["prod"] = options->product;
- parameters["ver"] = options->version;
+ parameters["ProductName"] = options->product;
+ parameters["Version"] = options->version;
std::map<string, string> files;
files["upload_file_minidump"] = options->minidumpPath;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment