diff options
Diffstat (limited to 'net/net.c')
| -rw-r--r-- | net/net.c | 8 | 
1 files changed, 2 insertions, 6 deletions
| @@ -528,15 +528,11 @@ restart:  		case NETLOOP_SUCCESS:  			net_cleanup_loop();  			if (NetBootFileXferSize > 0) { -				char buf[20];  				printf("Bytes transferred = %ld (%lx hex)\n",  					NetBootFileXferSize,  					NetBootFileXferSize); -				sprintf(buf, "%lX", NetBootFileXferSize); -				setenv("filesize", buf); - -				sprintf(buf, "%lX", (unsigned long)load_addr); -				setenv("fileaddr", buf); +				setenv_hex("filesize", NetBootFileXferSize); +				setenv_hex("fileaddr", load_addr);  			}  			if (protocol != NETCONS)  				eth_halt(); |