Hello,

> Since it does not crash and just consumes 100% CPU - what is the best way 
> to debug it?

compile it with debugging informations. Than attach to it on the same
machine you compiled it and type the following:

# Find out the pid
ps axuwww | grep lftp

gdb /path/to/lftp/binary
        # In GDB
        attach pid
        bt
        quit

That shows you what lftp currently does and maybe enable Alex to fix it.

        Thomas

Reply via email to