From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/fastcgi.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/fastcgi.cpp') diff --git a/src/fastcgi.cpp b/src/fastcgi.cpp index ca3010e..1b012e8 100644 --- a/src/fastcgi.cpp +++ b/src/fastcgi.cpp @@ -114,14 +114,14 @@ void Bu::FastCgi::readPair( Bu::TcpSocket &s, StrHash &hParams, uint16_t &uRead uRead += uName + uValue; unsigned char *sName = new unsigned char[uName]; s.read( sName, uName ); - Bu::FString fsName( (char *)sName, uName ); + Bu::String fsName( (char *)sName, uName ); delete[] sName; if( uValue > 0 ) { unsigned char *sValue = new unsigned char[uValue]; s.read( sValue, uValue ); - Bu::FString fsValue( (char *)sValue, uValue ); + Bu::String fsValue( (char *)sValue, uValue ); hParams.insert( fsName, fsValue ); delete[] sValue; } @@ -305,8 +305,8 @@ void Bu::FastCgi::run() mStdOut, mStdErr ); - Bu::FString &sStdOut = mStdOut.getString(); - Bu::FString &sStdErr = mStdErr.getString(); + Bu::String &sStdOut = mStdOut.getString(); + Bu::String &sStdErr = mStdErr.getString(); Record rOut; memset( &rOut, 0, sizeof(rOut) ); -- cgit v1.2.3