fix symupload / minidump_upload to match changes to HTTPUpload::SendRequest from r640

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@657 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
ted.mielczarek 2010-08-18 12:24:55 +00:00
parent 0b12b34928
commit 39edd96373
2 changed files with 7 additions and 2 deletions

View file

@ -27,12 +27,15 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// minidump_upload.m: Upload a minidump to a HTTP server. The upload is sent as
// a multipart/form-data POST request with the following parameters:
// minidump_upload.cc: Upload a minidump to a HTTP server.
// The upload is sent as a multipart/form-data POST request with
// the following parameters:
// prod: the product name
// ver: the product version
// symbol_file: the breakpad format symbol file
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string>
@ -66,6 +69,7 @@ static void Start(Options *options) {
"upload_file_minidump",
options->proxy,
options->proxy_user_pwd,
"",
&response,
&error);

View file

@ -145,6 +145,7 @@ static void Start(Options *options) {
"symbol_file",
options->proxy,
options->proxy_user_pwd,
"",
&response,
&error);