Actually treat fatal error codes as fatal

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@690 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
nealsid 2010-09-16 23:06:43 +00:00
parent 1fa7c1c4c4
commit 4b7f1eba64

View file

@ -75,8 +75,7 @@ ReportResult CrashReportSender::SendCrashReport(
if (result) {
ReportSent(today);
return RESULT_SUCCEEDED;
} else if (http_response == 400) { // TODO: update if/when the server
// switches to a different code
} else if (http_response >= 400 && http_response < 500) {
return RESULT_REJECTED;
} else {
return RESULT_FAILED;