Parcourir la source

hostapd: Do not call eloop_terminate() on interface setup failure

The caller is able to handle the error code properly and there is no
need to forcefully stop the eloop run here.
Jouni Malinen il y a 15 ans
Parent
commit
bee07ce805
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      hostapd/hostapd.c

+ 1 - 2
hostapd/hostapd.c

@@ -1348,9 +1348,8 @@ int hostapd_setup_interface(struct hostapd_iface *iface)
 
 	ret = setup_interface(iface);
 	if (ret) {
-		wpa_printf(MSG_DEBUG, "%s: Unable to setup interface.",
+		wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
 			   iface->bss[0]->conf->iface);
-		eloop_terminate();
 		return -1;
 	}