11-29-2004, 05:51 AM
|
#11 |
| Senior Member FlashFXP Registered User ioFTPD Foundation User
Join Date: Oct 2004
Posts: 113
|
I have taken a look at ioLATESTDIR.itcl... one problem I see is that it doesn't work properly if directory name has trailing slash. Adding right after this line:
set vfs [lindex "$args" 1]
the following:
# Remove trailing "/" - it can be here sometimes
set vfs "[string range $vfs 0 end-1][regsub {/} [string index $vfs end] {}]"
should fix it.
I don't see, however, how that could result in random symlinks being created. So there may be yet another problem hidden somewhere. But try it - it may help.
Let me know of the results. BTW, does anybody has a method of reproducing this problem? I have seen it on my ftp from time to time, but it doesn't occur very often.
|
| |