aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2012-04-26 15:57:51 -0700
committerH. Peter Anvin <hpa@zytor.com>2012-04-26 15:57:51 -0700
commitc135aeebe08d857548a3a56b6fc3a0125ec8972c (patch)
tree30c3ec0866c5e4827bdd8a90d54fdd66cdcc1c75
parent335cd2ec7488a994323e569d55d14f658840b30b (diff)
downloadsyslinux-c135aeebe08d857548a3a56b6fc3a0125ec8972c.tar.gz
syslinux-c135aeebe08d857548a3a56b6fc3a0125ec8972c.tar.xz
syslinux-c135aeebe08d857548a3a56b6fc3a0125ec8972c.zip
pxe, ftp: Change anonymous password to syslinux@
Change the anonymous password from "pxelinux@" to "syslinux@". Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--core/fs/pxe/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fs/pxe/ftp.c b/core/fs/pxe/ftp.c
index 097536d1..50c92577 100644
--- a/core/fs/pxe/ftp.c
+++ b/core/fs/pxe/ftp.c
@@ -226,7 +226,7 @@ void ftp_open(struct url_info *url, int flags, struct inode *inode,
if (!url->user)
url->user = "anonymous";
if (!url->passwd)
- url->passwd = "pxelinux@";
+ url->passwd = "syslinux@";
resp = ftp_cmd_response(socket->ctl, "USER", url->user, NULL, NULL);
if (resp != 202 && resp != 230) {