From 4704e4e84755e1e1c0e10650b11616b4497b4e24 Mon Sep 17 00:00:00 2001 From: cold-brewed Date: Tue, 9 May 2023 10:53:06 -0400 Subject: [PATCH] vde: Don't fatal() in network driver --- src/network/net_vde.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/net_vde.c b/src/network/net_vde.c index 904b2789a..9bed78a9e 100644 --- a/src/network/net_vde.c +++ b/src/network/net_vde.c @@ -280,7 +280,7 @@ void *net_vde_init(const netcard_t *card, const uint8_t *mac_addr, void *priv) { // TODO: Once there is a solution for the mentioned crash, this should be removed // and/or replaced by proper error handling code. //- - fatal("Could not open the specified VDE socket (%s). Please fix your networking configuration.", socket_name); + // fatal("Could not open the specified VDE socket (%s). Please fix your networking configuration.", socket_name); // It makes no sense to issue this warning since the program will crash anyway... // ui_msgbox_header(MBX_WARNING, (wchar_t *) IDS_2167, (wchar_t *) IDS_2168); return NULL;