changed \n\r to \r\n
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8484 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -116,7 +116,7 @@ void wxHTTP::SendHeaders()
|
|||||||
wxString *str = (wxString *)head->Data();
|
wxString *str = (wxString *)head->Data();
|
||||||
|
|
||||||
wxString buf;
|
wxString buf;
|
||||||
buf.Printf(wxT("%s: %s\n\r"), head->GetKeyString(), str->GetData());
|
buf.Printf(wxT("%s: %s\r\n"), head->GetKeyString(), str->GetData());
|
||||||
|
|
||||||
const wxWX2MBbuf cbuf = buf.mb_str();
|
const wxWX2MBbuf cbuf = buf.mb_str();
|
||||||
Write(cbuf, strlen(cbuf));
|
Write(cbuf, strlen(cbuf));
|
||||||
@@ -215,11 +215,11 @@ bool wxHTTP::BuildRequest(const wxString& path, wxHTTP_Req req)
|
|||||||
SetFlags(wxSOCKET_NONE);
|
SetFlags(wxSOCKET_NONE);
|
||||||
Notify(FALSE);
|
Notify(FALSE);
|
||||||
|
|
||||||
wxSprintf(buf, wxT("%s %s HTTP/1.0\n\r"), tmp_buf, tmp_str.GetData());
|
wxSprintf(buf, wxT("%s %s HTTP/1.0\r\n"), tmp_buf, tmp_str.GetData());
|
||||||
const wxWX2MBbuf pathbuf = wxConvLibc.cWX2MB(buf);
|
const wxWX2MBbuf pathbuf = wxConvLibc.cWX2MB(buf);
|
||||||
Write(pathbuf, strlen(wxMBSTRINGCAST pathbuf));
|
Write(pathbuf, strlen(wxMBSTRINGCAST pathbuf));
|
||||||
SendHeaders();
|
SendHeaders();
|
||||||
Write("\n\r", 2);
|
Write("\r\n", 2);
|
||||||
|
|
||||||
m_perr = GetLine(this, tmp_str);
|
m_perr = GetLine(this, tmp_str);
|
||||||
if (m_perr != wxPROTO_NOERR) {
|
if (m_perr != wxPROTO_NOERR) {
|
||||||
|
@@ -351,7 +351,7 @@ void wxLogGui::DoLog(wxLogLevel level, const wxChar *szString, time_t t)
|
|||||||
// debug window anyhow, but do put a timestamp
|
// debug window anyhow, but do put a timestamp
|
||||||
wxString str;
|
wxString str;
|
||||||
TimeStamp(&str);
|
TimeStamp(&str);
|
||||||
str << szString << wxT("\n\r");
|
str << szString << wxT("\r\n");
|
||||||
OutputDebugString(str);
|
OutputDebugString(str);
|
||||||
#else
|
#else
|
||||||
// send them to stderr
|
// send them to stderr
|
||||||
|
Reference in New Issue
Block a user