1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Remove 'make check'compiler warnings

This commit is contained in:
Tim Rühsen 2014-11-17 11:28:20 +01:00
parent 0ae74cde39
commit 2ece0cc425
5 changed files with 20 additions and 15 deletions

View File

@ -1,3 +1,8 @@
2014-11-17 Tim Ruehsen <tim.ruehsen@gmx.de>
* ftp.h: removed unused variable ftp_last_respline
* init.c, test.c, warc.c: removed 'make check'compiler warnings
2014-11-16 Tom Li <biergaizi2009@gmail.com>
* progress.c (create_image): Ensure that the last character of the filename

View File

@ -53,8 +53,6 @@ enum ustype
UST_OTHER
};
extern char ftp_last_respline[];
uerr_t ftp_response (int, char **);
uerr_t ftp_login (int, const char *, const char *);
uerr_t ftp_port (int, int *);

View File

@ -1844,7 +1844,7 @@ test_cmd_spec_restrict_file_names(void)
static const struct {
const char *val;
int expected_restrict_files_os;
int expected_restrict_files_ctrl;
bool expected_restrict_files_ctrl;
int expected_restrict_files_case;
bool result;
} test_array[] = {
@ -1869,9 +1869,9 @@ test_cmd_spec_restrict_file_names(void)
*/
mu_assert ("test_cmd_spec_restrict_file_names: wrong result",
res == test_array[i].result
&& opt.restrict_files_os == test_array[i].expected_restrict_files_os
&& (int) opt.restrict_files_os == test_array[i].expected_restrict_files_os
&& opt.restrict_files_ctrl == test_array[i].expected_restrict_files_ctrl
&& opt.restrict_files_case == test_array[i].expected_restrict_files_case);
&& (int) opt.restrict_files_case == test_array[i].expected_restrict_files_case);
}
return NULL;

View File

@ -41,22 +41,22 @@ as that of the covered work. */
#error "TESTING not set!!!"
#endif
const char *test_parse_content_disposition();
const char *test_subdir_p();
const char *test_dir_matches_p();
const char *test_commands_sorted();
const char *test_cmd_spec_restrict_file_names();
const char *test_path_simplify ();
const char *test_append_uri_pathel();
const char *test_are_urls_equal();
const char *test_is_robots_txt_url();
const char *test_parse_content_disposition(void);
const char *test_subdir_p(void);
const char *test_dir_matches_p(void);
const char *test_commands_sorted(void);
const char *test_cmd_spec_restrict_file_names(void);
const char *test_path_simplify (void);
const char *test_append_uri_pathel(void);
const char *test_are_urls_equal(void);
const char *test_is_robots_txt_url(void);
const char *program_argstring = "TEST";
int tests_run;
static const char *
all_tests()
all_tests(void)
{
mu_run_test (test_parse_content_disposition);
mu_run_test (test_subdir_p);

View File

@ -27,7 +27,9 @@ Corresponding Source for a non-source form of such a combination
shall include the source code for the parts of OpenSSL used as well
as that of the covered work. */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "wget.h"
#include "hash.h"