search for: f0f8b61

Displaying 1 result from an estimated 1 matches for "f0f8b61".

2011 Jul 12
0
[PATCH] pxelinux: open_file() returns a non-negative handle
...open_config()". The bug causes pxelinux to fail to open configuration files. Signed-off-by: Matt Fleming <matt.fleming at linux.intel.com> --- core/fs/pxe/pxe.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/fs/pxe/pxe.c b/core/fs/pxe/pxe.c index f0f8b61..d689e61 100644 --- a/core/fs/pxe/pxe.c +++ b/core/fs/pxe/pxe.c @@ -1065,7 +1065,7 @@ static int pxe_open_config(struct com32_filedata *filedata) get_prefix(); if (DHCPMagic & 0x02) { /* We got a DHCP option, try it first */ - if (!open_file(ConfigName, filedata)) + if (open_...