diff options
Diffstat (limited to 'examples/network/infoprotocol/infoserver/server.cpp')
| -rw-r--r-- | examples/network/infoprotocol/infoserver/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/network/infoprotocol/infoserver/server.cpp b/examples/network/infoprotocol/infoserver/server.cpp index d71de6590..242be013a 100644 --- a/examples/network/infoprotocol/infoserver/server.cpp +++ b/examples/network/infoprotocol/infoserver/server.cpp @@ -80,7 +80,7 @@ TQString ClientSocket::processCommand( const TQString& command ) answer += "550 Invalid path\r\n"; } else if ( com.startsWith( "GET " ) ) { bool ok; - TQStringList data = TQStringList::split( '\n', info->get( com.mid( 4 ), &ok ), TRUE ); + TQStringList data = TQStringList::split( '\n', info->get( com.mid( 4 ), &ok ), true ); if ( ok ) { for ( TQStringList::Iterator it = data.begin(); it != data.end(); ++it ) answer += "213+" + *it + "\r\n"; |
