comparison src/gtk/transfer.c @ 862:885038cb945b

2006-11-30 Brian Masney <masneyb@gftp.org> * lib/gftp.h src/uicommon/gftpui.c - when a file transfer is restarted, get the file size of the destination file. This is so that the file is restarted at the proper position (closes #160239). (_gftpui_common_do_transfer_file) - split this function into a smaller function: _do_transfer_block(). * src/gtk/transfer.c - removed debugging statement
author masneyb
date Sat, 23 Dec 2006 16:12:21 +0000
parents 74f49d528c68
children 1fae947d4418
comparison
equal deleted inserted replaced
861:5aae5b877544 862:885038cb945b
440 int ret; 440 int ret;
441 441
442 gftpui_common_child_process_done = 0; 442 gftpui_common_child_process_done = 0;
443 while ((pid = waitpid (-1, &ret, WNOHANG)) > 0) 443 while ((pid = waitpid (-1, &ret, WNOHANG)) > 0)
444 { 444 {
445 printf ("FIXME - PID %d returned %d\n", pid, ret);
446 do_check_done_process (pid, ret); 445 do_check_done_process (pid, ret);
447 } 446 }
448 } 447 }
449 448
450 449