mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 20:29:14 +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)
|
TLFTPTelnetClient = class(TLTelnetClient)
|
||||||
protected
|
protected
|
||||||
procedure React(const Operation, Command: Char); override;
|
function React(const Operation, Command: Char):boolean; override;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TLFTPClient }
|
{ TLFTPClient }
|
||||||
@ -368,8 +368,9 @@ end;
|
|||||||
|
|
||||||
{ TLFTPTelnetClient }
|
{ TLFTPTelnetClient }
|
||||||
|
|
||||||
procedure TLFTPTelnetClient.React(const Operation, Command: Char);
|
function TLFTPTelnetClient.React(const Operation, Command: Char):boolean;
|
||||||
begin
|
begin
|
||||||
|
result:=false;
|
||||||
// don't do a FUCK since they broke Telnet in FTP as per-usual
|
// don't do a FUCK since they broke Telnet in FTP as per-usual
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user