Fix compilation error for install.c in loader
Fix typo in interp_include() invocation (missing 'p') Remove setting tftpip, as servip is used by the tftp code in libsa. There is no separate tftpip global variable any more. Obtained from: Juniper Networks, Inc. MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D25897
This commit is contained in:
parent
0b87619ffe
commit
fafe230db0
@ -286,10 +286,6 @@ install(char *pkgname)
|
|||||||
|
|
||||||
setenv("serverip", inet_ntoa(servip), 1);
|
setenv("serverip", inet_ntoa(servip), 1);
|
||||||
|
|
||||||
if (proto == &tftp_fsops) {
|
|
||||||
tftpip.s_addr = servip.s_addr;
|
|
||||||
}
|
|
||||||
|
|
||||||
*pkgname = '/';
|
*pkgname = '/';
|
||||||
} else
|
} else
|
||||||
pkgname = s;
|
pkgname = s;
|
||||||
@ -340,7 +336,7 @@ install(char *pkgname)
|
|||||||
fd = open(s, O_RDONLY);
|
fd = open(s, O_RDONLY);
|
||||||
if (fd != -1) {
|
if (fd != -1) {
|
||||||
close(fd);
|
close(fd);
|
||||||
error = inter_include(s);
|
error = interp_include(s);
|
||||||
if (error == CMD_ERROR)
|
if (error == CMD_ERROR)
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user