wget: fix wget-supports--P testsuite failure. Closes 4940

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2012-06-17 20:21:30 +02:00
parent e0a6004ce8
commit aacd448601

View File

@ -621,7 +621,6 @@ static void download_one_url(const char *url)
if (G.fname_out[0] == '/' || !G.fname_out[0]) if (G.fname_out[0] == '/' || !G.fname_out[0])
G.fname_out = (char*)"index.html"; G.fname_out = (char*)"index.html";
/* -P DIR is considered only if there was no -O FILE */ /* -P DIR is considered only if there was no -O FILE */
else {
if (G.dir_prefix) if (G.dir_prefix)
G.fname_out = fname_out_alloc = concat_path_file(G.dir_prefix, G.fname_out); G.fname_out = fname_out_alloc = concat_path_file(G.dir_prefix, G.fname_out);
else { else {
@ -629,7 +628,6 @@ static void download_one_url(const char *url)
G.fname_out = fname_out_alloc = xstrdup(G.fname_out); G.fname_out = fname_out_alloc = xstrdup(G.fname_out);
} }
} }
}
#if ENABLE_FEATURE_WGET_STATUSBAR #if ENABLE_FEATURE_WGET_STATUSBAR
G.curfile = bb_get_last_path_component_nostrip(G.fname_out); G.curfile = bb_get_last_path_component_nostrip(G.fname_out);
#endif #endif