[svn] Fixed broken -E -k -K mode.

This commit is contained in:
mtortonesi 2006-10-12 06:37:58 -07:00
parent 763229b67f
commit d8aca98b18
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-10-12 Mauro Tortonesi <mauro@ferrara.linux.it>
* convert.c (downloaded_file): Fixed bug which used to break -E -k -K
mode.
2006-08-28 Mauro Tortonesi <mauro@ferrara.linux.it>
* http.c: #include'd spider.h to get rid of compiler warnings.

View File

@ -934,7 +934,7 @@ downloaded_file (downloaded_file_t mode, const char *file)
return *ptr;
ptr = downloaded_mode_to_ptr (mode);
hash_table_put (downloaded_files_hash, xstrdup (file), &ptr);
hash_table_put (downloaded_files_hash, xstrdup (file), ptr);
return FILE_NOT_ALREADY_DOWNLOADED;
}