summaryrefslogtreecommitdiff
path: root/menus.c
diff options
context:
space:
mode:
Diffstat (limited to 'menus.c')
-rw-r--r--menus.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/menus.c b/menus.c
index bb04da0..a2398bd 100644
--- a/menus.c
+++ b/menus.c
@@ -3414,20 +3414,20 @@ static int Submenu_Implement_Changes(void)
static void Nonstd_menu_network(void)
{
- nicinfo info;
+ nicinfo info;
if (nicutils_infofordefaultroute(&info)) {
gchar *response = g_strdup_printf ("MAC address: %s", info.mac);
LCD_write(0,0,response);
g_free (response);
response = g_strdup_printf ("IP address: %s", info.ip);
- LCD_write(1,0,response);
- g_free (response);
+ LCD_write(1,0,response);
+ g_free (response);
LCD_write(3,0,"Press CHANGE to continue.");
- } else {
+ } else {
LCD_display_extended_message("No network found.", TRUE, FALSE);
- }
+ }
globals.MenuStatus.Nonstd_Display=YES;
}