mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
TFTP: fix search of ':' in BootFile
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
parent
0bc9efada1
commit
38cc09c55b
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ TftpStart (void)
|
|||
printf ("*** Warning: no boot file name; using '%s'\n",
|
||||
tftp_filename);
|
||||
} else {
|
||||
char *p = strchr (p, ':');
|
||||
char *p = strchr (BootFile, ':');
|
||||
|
||||
if (p == NULL) {
|
||||
strncpy(tftp_filename, BootFile, MAX_LEN);
|
||||
|
|
Loading…
Reference in a new issue