From 638d6641ffb41d616368a73fcd076c7d0ca37017 Mon Sep 17 00:00:00 2001 From: hpa Date: Tue, 9 Sep 2003 20:28:59 +0000 Subject: [PATCH] Yet another fix --- pxelinux.asm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pxelinux.asm b/pxelinux.asm index f33754c..3431a49 100644 --- a/pxelinux.asm +++ b/pxelinux.asm @@ -893,8 +893,7 @@ config_scan: ; Handle "ipappend" option %define HAVE_SPECIAL_APPEND %macro SPECIAL_APPEND 0 - mov al,[IPAppend] ; ip= - test al,01h ; IP append + test byte [IPAppend],01h ; ip= jz .noipappend1 mov si,IPOption mov cx,[IPOptionLen] @@ -902,7 +901,7 @@ config_scan: mov al,' ' stosb .noipappend1: - test al,02h + test byte [IPAppend],02h jz .noipappend2 mov si,bootif_str mov cx,bootif_str_len -- 2.7.4