]> git.mxchange.org Git - flightgear.git/commitdiff
plib-1.8.0 no longer defines the cchar type (which we used because we were
authorcurt <curt>
Mon, 22 Mar 2004 15:00:42 +0000 (15:00 +0000)
committercurt <curt>
Mon, 22 Mar 2004 15:00:42 +0000 (15:00 +0000)
deriving a class and the base class used this type.)  Return to using
const char and hope people compiling against earlier versions of plib
have compilers that think typedef const char cchar; char *abc; is equivalent
to const char *abd;

src/FDM/ExternalNet/ExternalNet.hxx

index 3562b2bf26d8208afebb034f45bb05cdbf78d667..21681cc8505a1baf575236716929ffe50e1a5dfb 100644 (file)
@@ -40,13 +40,13 @@ class HTTPClient : public netBufferChannel
 
 public:
 
-    HTTPClient ( cchar* host, int port, cchar* path ) :
+    HTTPClient ( const char* host, int port, const char* path ) :
         done( false )
     {
        open ();
        connect (host, port);
 
-       cchar* s = netFormat ( "GET %s HTTP/1.0\r\n\r\n", path );
+       const char* s = netFormat ( "GET %s HTTP/1.0\r\n\r\n", path );
        bufferSend( s, strlen(s) ) ;
 
         start.stamp();