From 610edc27292e0737c67fcf30bcd6ea792e592296 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Fri, 6 May 2005 19:06:59 +0000 Subject: [PATCH] Correct typo svn path=/trunk/; revision=15054 --- reactos/subsys/system/reporterror/reporterror.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/reactos/subsys/system/reporterror/reporterror.c b/reactos/subsys/system/reporterror/reporterror.c index 3d1240c04c2..aeb890bbbd3 100644 --- a/reactos/subsys/system/reporterror/reporterror.c +++ b/reactos/subsys/system/reporterror/reporterror.c @@ -278,14 +278,14 @@ CreateHTTPPostRequest(LPSTR requestBuffer, memset(parameterBuffer, '\0', MAX_REQUEST_BUFFER_SIZE); strcat(parameterBuffer, "errorReport="); - strcat(parameterBuffer, ""); + strcat(parameterBuffer, ""); strcat(parameterBuffer, ""); strcat(parameterBuffer, errorReport->YourEmail); strcat(parameterBuffer, ""); strcat(parameterBuffer, ""); strcat(parameterBuffer, errorReport->ProblemDescription); strcat(parameterBuffer, ""); - strcat(parameterBuffer, ""); + strcat(parameterBuffer, ""); strcat(parameterBuffer, "\r\n"); urlencodeBuffer = malloc(MAX_REQUEST_BUFFER_SIZE); @@ -311,7 +311,6 @@ CreateHTTPPostRequest(LPSTR requestBuffer, BOOL WasErrorReportDelivered(LPSTR httpResponse) { - return strstr(httpResponse, "</ErrorReportResponse>") != NULL; }