From 0bd1751372b7b4ab3d0913dab2980b5100087a85 Mon Sep 17 00:00:00 2001 From: mtortonesi Date: Tue, 14 Mar 2006 05:52:17 -0800 Subject: [PATCH] [svn] recur.c: changed type of html_allowed member of struct queue_element to bool. --- src/ChangeLog | 5 +++++ src/recur.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 */ -- 2.39.2