From: mtortonesi Date: Tue, 14 Mar 2006 13:52:17 +0000 (-0800) Subject: [svn] recur.c: changed type of html_allowed member of struct queue_element to bool. X-Git-Tag: v1.13~670 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=0bd1751372b7b4ab3d0913dab2980b5100087a85 [svn] recur.c: changed type of html_allowed member of struct queue_element to bool. --- diff --git a/src/ChangeLog b/src/ChangeLog index 04fea0d5..abbf2e28 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2006-03-14 Mauro Tortonesi + + * recur.c (struct queue_element): Changed type of html_allowed member + to bool. + 2006-03-09 Mauro Tortonesi * ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST' diff --git a/src/recur.c b/src/recur.c index 71008fb9..641174d6 100644 --- a/src/recur.c +++ b/src/recur.c @@ -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 */