mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] recur.c: changed type of html_allowed member of struct queue_element to bool.
This commit is contained in:
parent
d34270c536
commit
0bd1751372
@ -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>
|
2006-03-09 Mauro Tortonesi <mauro@ferrara.linux.it>
|
||||||
|
|
||||||
* ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST'
|
* ftp.c (ftp_list): Try `LIST -a' command first and revert to `LIST'
|
||||||
|
@ -55,7 +55,7 @@ struct queue_element {
|
|||||||
const char *url; /* the URL to download */
|
const char *url; /* the URL to download */
|
||||||
const char *referer; /* the referring document */
|
const char *referer; /* the referring document */
|
||||||
int depth; /* the depth */
|
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. */
|
be treated as HTML. */
|
||||||
|
|
||||||
struct queue_element *next; /* next element in queue */
|
struct queue_element *next; /* next element in queue */
|
||||||
|
Loading…
Reference in New Issue
Block a user