From 1e91c7e6cdc5123eacedb22bd64549bdf316d2af Mon Sep 17 00:00:00 2001 From: Toad King Date: Fri, 27 Jul 2012 16:22:49 -0400 Subject: [PATCH] (Wii) configure network for net logger --- console/logger/logger.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/console/logger/logger.c b/console/logger/logger.c index 707a546f96..60881c0ceb 100644 --- a/console/logger/logger.c +++ b/console/logger/logger.c @@ -99,6 +99,11 @@ static int if_up_with(int index) return (0); } } +#elif defined(GEKKO) + if (if_config(NULL, NULL, NULL, TRUE) < 0) + { + return (-1); + } #endif sock=socket(AF_INET,SOCK_DGRAM ,0);