]> sjero.net Git - wget/commitdiff
[svn] recur.c: changed type of html_allowed member of struct queue_element to bool.
authormtortonesi <devnull@localhost>
Tue, 14 Mar 2006 13:52:17 +0000 (05:52 -0800)
committermtortonesi <devnull@localhost>
Tue, 14 Mar 2006 13:52:17 +0000 (05:52 -0800)
src/ChangeLog
src/recur.c

index 04fea0d5d645dc2630cb42ec5215947e6be29665..abbf2e2858e121ec204e54dffd5217df2583135a 100644 (file)
@@ -1,3 +1,8 @@
+2006-03-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
+
+       * recur.c (struct queue_element): Changed type of html_allowed member
+       to bool.
+       
 2006-03-09  Mauro Tortonesi  <mauro@ferrara.linux.it>
 
        * ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST'
index 71008fb9501a931e3211e7c290414d463e4b4469..641174d69d23ded46be218c8b1aa5b11645c061b 100644 (file)
@@ -55,7 +55,7 @@ struct queue_element {
   const char *url;             /* the URL to download */
   const char *referer;         /* the referring document */
   int depth;                   /* the depth */
-  unsigned int html_allowed :1;        /* whether the document is allowed to
+  bool html_allowed;           /* whether the document is allowed to
                                   be treated as HTML. */
 
   struct queue_element *next;  /* next element in queue */