From c135aeebe08d857548a3a56b6fc3a0125ec8972c Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 26 Apr 2012 15:57:51 -0700 Subject: pxe, ftp: Change anonymous password to syslinux@ Change the anonymous password from "pxelinux@" to "syslinux@". Signed-off-by: H. Peter Anvin --- core/fs/pxe/ftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.1