View Single Post
Old 05-27-2003, 06:12 AM  
caladan
Senior Member
 
Join Date: Jan 2003
Posts: 179
Default

for ppl sometimes getting 0byte files which don't get deleted by zs try folowing:

edit cldn.script.c. move to the last lines.. they looks like:

/*return 0 to ioFTPD*/
debug_log("Exiting now with %i\n",exit_value);
printf("!detach %i\n",exit_value);
exit(0);
}


change this to:

/*return 0 to ioFTPD*/
debug_log("Exiting now with %i\n",exit_value);
printf("!detach %i\n",exit_value);
fflush(stdout);
exit(exit_value);
}
caladan is offline   Reply With Quote