X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fres.c;h=3038229bf074891e3dcdee5c383aeef77d264df3;hp=0996c90370104013c0fb1b93b61466bc45988c79;hb=HEAD;hpb=2f6aa1d7417df1dfc58597777686fbd77179b9fd diff --git a/src/res.c b/src/res.c index 0996c903..3038229b 100644 --- a/src/res.c +++ b/src/res.c @@ -283,7 +283,7 @@ res_parse (const char *source, int length) SKIP_SPACE (p); if (field_b == field_e || EOL (p) || *p != ':') { - DEBUGP (("Ignoring malformed line %d", line_count)); + DEBUGP (("Ignoring malformed line %d\n", line_count)); goto next; } ++p; /* skip ':' */ @@ -351,7 +351,7 @@ res_parse (const char *source, int length) } else { - DEBUGP (("Ignoring unknown field at line %d", line_count)); + DEBUGP (("Ignoring unknown field at line %d\n", line_count)); goto next; } @@ -552,7 +552,7 @@ res_retrieve_file (const char *url, char **file, struct iri *iri) opt.timestamping = false; opt.spider = false; - url_parsed = url_parse (robots_url, &url_err, iri, true); + url_parsed = url_parse (robots_url, &url_err, i, true); if (!url_parsed) { char *error = url_error (robots_url, url_err); @@ -615,11 +615,11 @@ res_cleanup (void) #ifdef TESTING const char * -test_is_robots_txt_url() +test_is_robots_txt_url(void) { - int i; - struct { - char *url; + unsigned i; + static const struct { + const char *url; bool expected_result; } test_array[] = { { "http://www.yoyodyne.com/robots.txt", true }, @@ -627,7 +627,7 @@ test_is_robots_txt_url() { "http://www.yoyodyne.com/somepath/robots.txt", false }, }; - for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) + for (i = 0; i < countof(test_array); ++i) { mu_assert ("test_is_robots_txt_url: wrong result", is_robots_txt_url (test_array[i].url) == test_array[i].expected_result);