diff options
author | Michael Brown <mcb30@ipxe.org> | 2010-04-19 20:16:01 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2010-04-19 23:43:39 +0100 |
commit | 8406115834d38bb743e01f35bfd36e835532415e (patch) | |
tree | ee1e3106e2cdc645d911ba5643f8414b21fc4c3e /src/net/tcp/ftp.c | |
parent | 2a36703af228bd10d50a31daec96072fe3a992a3 (diff) |
[build] Rename gPXE to iPXE
Access to the gpxe.org and etherboot.org domains and associated
resources has been revoked by the registrant of the domain. Work
around this problem by renaming project from gPXE to iPXE, and
updating URLs to match.
Also update README, LOG and COPYRIGHTS to remove obsolete information.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/tcp/ftp.c')
-rw-r--r-- | src/net/tcp/ftp.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/net/tcp/ftp.c b/src/net/tcp/ftp.c index 920e537a..3ef71b61 100644 --- a/src/net/tcp/ftp.c +++ b/src/net/tcp/ftp.c @@ -5,14 +5,14 @@ #include <assert.h> #include <errno.h> #include <byteswap.h> -#include <gpxe/socket.h> -#include <gpxe/tcpip.h> -#include <gpxe/in.h> -#include <gpxe/xfer.h> -#include <gpxe/open.h> -#include <gpxe/uri.h> -#include <gpxe/features.h> -#include <gpxe/ftp.h> +#include <ipxe/socket.h> +#include <ipxe/tcpip.h> +#include <ipxe/in.h> +#include <ipxe/xfer.h> +#include <ipxe/open.h> +#include <ipxe/uri.h> +#include <ipxe/features.h> +#include <ipxe/ftp.h> /** @file * @@ -149,7 +149,7 @@ static const char * ftp_user ( struct ftp_request *ftp ) { * @ret password FTP password */ static const char * ftp_password ( struct ftp_request *ftp ) { - static char *ftp_default_password = "etherboot@etherboot.org"; + static char *ftp_default_password = "ipxe@ipxe.org"; return ftp->uri->password ? ftp->uri->password : ftp_default_password; } |