summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhpa <hpa>2005-08-28 02:35:30 +0000
committerhpa <hpa>2005-08-28 02:35:30 +0000
commit257b8e03808e678671125d1f5861867c332799a7 (patch)
tree1e1d7e5d6c16f142c3d4383007ff8cae67e83056
parent8a80f2fa93a1a6d76af9a8db1758359db87ea455 (diff)
downloadsyslinux-257b8e03808e678671125d1f5861867c332799a7.tar.gz
Handle 512-character command lines
-rw-r--r--com32/modules/menu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/com32/modules/menu.h b/com32/modules/menu.h
index 091a1337..0d4bd001 100644
--- a/com32/modules/menu.h
+++ b/com32/modules/menu.h
@@ -28,7 +28,8 @@ struct menu_entry {
unsigned char hotkey;
};
-#define MAX_CMDLINE_LEN 256
+/* 512 is the current definition inside syslinux */
+#define MAX_CMDLINE_LEN 512
#define MAX_ENTRIES 4096 /* Oughta be enough for anybody */
extern struct menu_entry menu_entries[];