Browse Source

[pxebs] Consistently interpret PXE type field as little-endian

The PXE menu code also treated the type as big-endian, which went
unnoticed until the first fix because its ntohs() was matched by a
htons() in the PXE boot server discovery code.

Signed-off-by: Marty Connor <mdc@etherboot.org>
tags/v1.0.0-rc1
Joshua Oreman 14 years ago
parent
commit
7a5aaecda2
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/usr/pxemenu.c

+ 1
- 1
src/usr/pxemenu.c View File

@@ -153,7 +153,7 @@ static int pxe_menu_parse ( struct pxe_menu **menu ) {
153 153
 			  ( num_menu_items * sizeof ( (*menu)->items[0] ) ) );
154 154
 	memcpy ( raw_menu_item, raw_menu, raw_menu_len );
155 155
 	for ( i = 0 ; i < num_menu_items ; i++ ) {
156
-		(*menu)->items[i].type = ntohs ( raw_menu_item->type );
156
+		(*menu)->items[i].type = le16_to_cpu ( raw_menu_item->type );
157 157
 		(*menu)->items[i].desc = raw_menu_item->desc;
158 158
 		/* Set type to 0; this ensures that the description
159 159
 		 * for the previous menu item is NUL-terminated.

Loading…
Cancel
Save