]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/http.cpp
Remaining Makefile.ins,
[wxWidgets.git] / src / common / http.cpp
index 041e5a5e01b7c415c8475fbb52ffbc0352085afe..a7e14752b4574ee319fc3c99765788957fd91918 100644 (file)
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
-#pragma hdrstop
+  #pragma hdrstop
 #endif
 
-#if wxUSE_SOCKETS
-
 #ifndef WX_PRECOMP
+  #include "wx/defs.h"
 #endif
 
+#if wxUSE_SOCKETS
+
 #include <stdio.h>
 #include <stdlib.h>
 #include "wx/string.h"
@@ -130,7 +131,7 @@ bool wxHTTP::ParseHeaders()
       break;
 
     tokenzr.SetString(line, " :\t\n\r");
-    if (!tokenzr.HasMoreToken())
+    if (!tokenzr.HasMoreTokens())
       return FALSE;
 
     wxString left_str = tokenzr.GetNextToken();
@@ -197,7 +198,7 @@ bool wxHTTP::BuildRequest(const wxString& path, wxHTTP_Req req)
   SetFlags(NONE);
   Notify(FALSE);
 
-  sprintf(buf, "%s %s\n\r", tmp_buf, pathbuf);
+  sprintf(buf, "%s %s\n\r", tmp_buf, (const char*) pathbuf);
   Write(buf, strlen(buf));
   SendHeaders();
   sprintf(buf, "\n\r");