From: Vadim Zeitlin Date: Wed, 9 Jul 2003 22:47:02 +0000 (+0000) Subject: oops, compilation fix after applying the patch X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ed83150139f5c9e509a4d6256792af9932486a6f oops, compilation fix after applying the patch git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21824 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/http.cpp b/src/common/http.cpp index 71db1b5e85..bd5aac20f4 100644 --- a/src/common/http.cpp +++ b/src/common/http.cpp @@ -196,7 +196,7 @@ bool wxHTTP::BuildRequest(const wxString& path, wxHTTP_Req req) request = wxT("GET"); break; case wxHTTP_POST: - tmp_buf = wxT("POST"); + request = wxT("POST"); break; default: return FALSE;