Using version 2.1 build 1503 I've noticed an issue when attempting to upload files to a remote serving when passing arguments through the command line.
If you do not specify a remote path for coreFTP to use then it will try to substitute it with a number of different strings, "PBSZ=0" , "Entering", etc.
Possibly a buffer not being cleared?
When doing a normal ftp transfer, this issue does not exist. I've only had this problem when trying to upload over ssl/tls over ftp.
[code]
coreftp -O -site test -u c:\ahldata\*.orp -output C:\logs\Ahl\Sent\%d%.txt -log C:\logs\Ahler\Sent\%d%.log
[/code]
However, the problem does not occur if you specify a / for the remote ftp path.
IE
[code]
coreftp -O -site test -u c:\ahldata\*.orp -output C:\logs\Ahl\Sent\%d%.txt -log C:\logs\Ahler\Sent\%d%.log -p /
[/code]