]> sjero.net Git - wget/commitdiff
[svn] Fixed broken -E -k -K mode.
authormtortonesi <devnull@localhost>
Thu, 12 Oct 2006 13:37:58 +0000 (06:37 -0700)
committermtortonesi <devnull@localhost>
Thu, 12 Oct 2006 13:37:58 +0000 (06:37 -0700)
src/ChangeLog
src/convert.c

index 01e38b20abd0bba0b75b2d0ab12b24d0818145b0..6a963d6199000acce158b50f036c9caf1ee2dfc9 100644 (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.
index a59e3c516cf7709c3c72f66f5c2a3548b15f8e3a..4274bc5b1650873c39e51578d4ee9f9f328b177a 100644 (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;
 }