summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2009-04-03 16:51:27 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2009-04-03 16:51:27 -0700
commit74ccc02fadda3d31b6ecc2a6ff68df037f9a62cb (patch)
treed1feb6f58abb127ea7a8f88e6eaf4848500b3448
parent69cbf4d6cc3469650e6d0d581220251ca45c36f4 (diff)
parentf13aac7a7e24f3b48168afb14b2eb714db5ea5a9 (diff)
downloadsyslinux-3.74-pre16.tar.gz
Merge commit 'hdt/master'syslinux-3.74-pre16
-rw-r--r--com32/hdt/hdt-menu-about.c2
-rw-r--r--com32/hdt/hdt-menu.c1
-rw-r--r--com32/hdt/hdt.h2
3 files changed, 3 insertions, 2 deletions
diff --git a/com32/hdt/hdt-menu-about.c b/com32/hdt/hdt-menu-about.c
index a5c1b0e6..f19dc361 100644
--- a/com32/hdt/hdt-menu-about.c
+++ b/com32/hdt/hdt-menu-about.c
@@ -54,7 +54,7 @@ void compute_aboutmenu(struct s_my_menu *menu)
add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0);
menu->items_count++;
- snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT);
+ snprintf(buffer, sizeof buffer, "Contact : %s", CONTACT);
snprintf(statbuffer, sizeof statbuffer, "Contact : %s", CONTACT);
add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0);
menu->items_count++;
diff --git a/com32/hdt/hdt-menu.c b/com32/hdt/hdt-menu.c
index a865e672..b531bc78 100644
--- a/com32/hdt/hdt-menu.c
+++ b/com32/hdt/hdt-menu.c
@@ -275,6 +275,7 @@ void compute_main_menu(struct s_hdt_menu *hdt_menu, struct s_hardware *hardware)
HDT_SWITCH_TO_CLI, 0);
add_item("<A>bout", "About Menu", OPT_SUBMENU, NULL,
hdt_menu->about_menu.menu);
+ add_item("E<x>it","Exit", OPT_EXITMENU,NULL,0);
hdt_menu->main_menu.items_count++;
hdt_menu->total_menu_count += hdt_menu->main_menu.items_count;
diff --git a/com32/hdt/hdt.h b/com32/hdt/hdt.h
index 84ecc2d2..14c94b36 100644
--- a/com32/hdt/hdt.h
+++ b/com32/hdt/hdt.h
@@ -30,7 +30,7 @@
#define DEFINE_HDT_H
#define PRODUCT_NAME "Hardware Detection Tool"
-#define AUTHOR "Erwan Vèlu"
+#define AUTHOR "Erwan Velu"
#define CONTACT "erwan(dot)velu(point)free(dot)fr"
#define VERSION "0.2.7"
#define NB_CONTRIBUTORS 2