mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 06:49:27 +02:00
* fix for compilation error when building with buildunit instead of fppkg?
git-svn-id: trunk@29468 -
This commit is contained in:
parent
bf33284b2f
commit
bb4adddd2c
@ -106,7 +106,7 @@ type
|
||||
|
||||
TLFTPTelnetClient = class(TLTelnetClient)
|
||||
protected
|
||||
procedure React(const Operation, Command: Char); override;
|
||||
function React(const Operation, Command: Char):boolean; override;
|
||||
end;
|
||||
|
||||
{ TLFTPClient }
|
||||
@ -368,8 +368,9 @@ end;
|
||||
|
||||
{ TLFTPTelnetClient }
|
||||
|
||||
procedure TLFTPTelnetClient.React(const Operation, Command: Char);
|
||||
function TLFTPTelnetClient.React(const Operation, Command: Char):boolean;
|
||||
begin
|
||||
result:=false;
|
||||
// don't do a FUCK since they broke Telnet in FTP as per-usual
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user