diff options
Diffstat (limited to 'menus.c')
-rw-r--r-- | menus.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; } |