diff options
author | hpa <hpa> | 2003-09-09 20:28:59 +0000 |
---|---|---|
committer | hpa <hpa> | 2003-09-09 20:28:59 +0000 |
commit | 638d6641ffb41d616368a73fcd076c7d0ca37017 (patch) | |
tree | 3386c83ee3a747c6b196dcee30a2db2215643931 | |
parent | 8fbde5849b1a237d39c33a1679b89cba6cc391f5 (diff) | |
download | syslinux-elf-syslinux-2.07-pre5.tar.gz syslinux-elf-syslinux-2.07-pre5.tar.xz syslinux-elf-syslinux-2.07-pre5.zip |
Yet another fixsyslinux-2.07-pre5
-rw-r--r-- | pxelinux.asm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pxelinux.asm b/pxelinux.asm index f33754cd..3431a492 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 |