# Ported to GTK-2.4 # Changed default save-folder to '~/MyDownloads' # Fixed loading files with size over 2GB (thanks to ZeQ from forum) # Fixed segfault after modifying scheduled download properties # Fixed segfault after removing download wich size is queried by F5 # Fix hang after rerun failed downloads (caused by rc2 fix :-) ) # Fixed continuing next item in queue when multithreaded download has failed # Fixed downloading in number of threads after stopping onethreaded downloading # Fixed segfault when no configuration files are found # Fixed some GTK runtime assertions # Fixed stopping thread just after exiting from gethostbyname # Fixed removing partially loaded file after redirection
13 lines
399 B
Text
13 lines
399 B
Text
$NetBSD: patch-ac,v 1.2 2005/07/31 19:36:22 shattered Exp $
|
|
|
|
--- main/locstr.cc.orig Thu Dec 25 20:14:34 2003
|
|
+++ main/locstr.cc Thu Dec 25 20:21:44 2003
|
|
@@ -714,7 +714,7 @@
|
|
action: convert string in ctime() format to time_t
|
|
*/
|
|
|
|
-int ctime_to_time(char *src) {
|
|
+time_t ctime_to_time(char *src) {
|
|
DBC_RETVAL_IF_FAIL(src!=NULL,0);
|
|
char data[MAX_LEN];
|
|
char *tmp=extract_string(src,data);
|