summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mdk-stage1/network.c2
-rw-r--r--mdk-stage1/url.c5
2 files changed, 3 insertions, 4 deletions
diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c
index b6256de47..884ddbc31 100644
--- a/mdk-stage1/network.c
+++ b/mdk-stage1/network.c
@@ -635,7 +635,7 @@ enum return_type ftp_prepare(void)
results = ask_from_entries_auto("Please enter the name or IP address of the FTP server, "
"the directory containing the " DISTRIB_NAME " Distribution, "
- "and the login/pass if necessary (leave blank for anonymous).",
+ "and the login/pass if necessary (leave login blank for anonymous).",
questions, &answers, 40, questions_auto);
if (results != RETURN_OK)
return ftp_prepare();
diff --git a/mdk-stage1/url.c b/mdk-stage1/url.c
index bbfff8464..9781d281d 100644
--- a/mdk-stage1/url.c
+++ b/mdk-stage1/url.c
@@ -188,11 +188,10 @@ int ftp_open_connection(char * host, char * name, char * password, char * proxy)
int rc;
int port = 21;
- if (!strcmp(name, ""))
+ if (!strcmp(name, "")) {
name = "anonymous";
-
- if (!strcmp(password, ""))
password = "-drakx@";
+ }
if (strcmp(proxy, "")) {
buf = alloca(strlen(name) + strlen(host) + 5);