summaryrefslogtreecommitdiffstats
path: root/net/tftp.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@pollux.denx.de>2005-08-04 01:09:44 +0200
committerWolfgang Denk <wd@pollux.denx.de>2005-08-04 01:09:44 +0200
commitc43352ccfa1ebeb15da26e52bcb152f614cbfe0a (patch)
tree9ece7bff185c2d8ae93c4aa690464e895e623a82 /net/tftp.c
parent6dfa434e326babbf0209bfae01bb57424924d2a9 (diff)
downloadtalos-obmc-uboot-c43352ccfa1ebeb15da26e52bcb152f614cbfe0a.tar.gz
talos-obmc-uboot-c43352ccfa1ebeb15da26e52bcb152f614cbfe0a.zip
Fix endianess problem in TFTP / NFS default filenames
Patch by Hiroshi Ito, 06 Dec 2004
Diffstat (limited to 'net/tftp.c')
-rw-r--r--net/tftp.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/net/tftp.c b/net/tftp.c
index 5a5ae22ac8..64a5576663 100644
--- a/net/tftp.c
+++ b/net/tftp.c
@@ -302,13 +302,11 @@ void
TftpStart (void)
{
if (BootFile[0] == '\0') {
- IPaddr_t OurIP = ntohl(NetOurIP);
-
sprintf(default_filename, "%02lX%02lX%02lX%02lX.img",
- OurIP & 0xFF,
- (OurIP >> 8) & 0xFF,
- (OurIP >> 16) & 0xFF,
- (OurIP >> 24) & 0xFF );
+ NetOurIP & 0xFF,
+ (NetOurIP >> 8) & 0xFF,
+ (NetOurIP >> 16) & 0xFF,
+ (NetOurIP >> 24) & 0xFF );
tftp_filename = default_filename;
printf ("*** Warning: no boot file name; using '%s'\n",
OpenPOWER on IntegriCloud