diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-04-26 15:57:51 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-04-26 15:57:51 -0700 |
commit | c135aeebe08d857548a3a56b6fc3a0125ec8972c (patch) | |
tree | 30c3ec0866c5e4827bdd8a90d54fdd66cdcc1c75 /core | |
parent | 335cd2ec7488a994323e569d55d14f658840b30b (diff) | |
download | syslinux-c135aeebe08d857548a3a56b6fc3a0125ec8972c.tar.gz |
pxe, ftp: Change anonymous password to syslinux@
Change the anonymous password from "pxelinux@" to "syslinux@".
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/fs/pxe/ftp.c | 2 |
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) { |