]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/ftp.cpp
bug in handling escaped chars in entries/group names corrected
[wxWidgets.git] / src / common / ftp.cpp
index 9ef749df6f648bb2eba0a7a0f4a2d7ace0de957a..5e8ce2749340e2d73843de1a28293323e47431bc 100644 (file)
@@ -155,7 +155,7 @@ bool wxFTP::SendCommand(const wxString& command, char exp_ret)
     return FALSE;
   }
   tmp_str = command + _T("\r\n");
-  wxWX2MBbuf tmp_buf = tmp_str.mb_str();
+  const wxWX2MBbuf tmp_buf = tmp_str.mb_str();
   if (Write(MBSTRINGCAST tmp_buf, strlen(tmp_buf)).Error()) {
     m_lastError = wxPROTO_NETERR;
     return FALSE;