Browse Source

hostapd: Show more helpful message for -g and -G errors

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 12 years ago
parent
commit
cd61936a4a
1 changed files with 6 additions and 2 deletions
  1. 6 2
      hostapd/main.c

+ 6 - 2
hostapd/main.c

@@ -525,6 +525,8 @@ static int hostapd_get_global_ctrl_iface(struct hapd_interfaces *interfaces,
 		return -1;
 		return -1;
 	pos = os_strrchr(interfaces->global_iface_path, '/');
 	pos = os_strrchr(interfaces->global_iface_path, '/');
 	if (pos == NULL) {
 	if (pos == NULL) {
+		wpa_printf(MSG_ERROR, "No '/' in the global control interface "
+			   "file");
 		os_free(interfaces->global_iface_path);
 		os_free(interfaces->global_iface_path);
 		interfaces->global_iface_path = NULL;
 		interfaces->global_iface_path = NULL;
 		return -1;
 		return -1;
@@ -614,10 +616,12 @@ int main(int argc, char *argv[])
 			exit(1);
 			exit(1);
 			break;
 			break;
 		case 'g':
 		case 'g':
-			hostapd_get_global_ctrl_iface(&interfaces, optarg);
+			if (hostapd_get_global_ctrl_iface(&interfaces, optarg))
+				return -1;
 			break;
 			break;
 		case 'G':
 		case 'G':
-			hostapd_get_ctrl_iface_group(&interfaces, optarg);
+			if (hostapd_get_ctrl_iface_group(&interfaces, optarg))
+				return -1;
 			break;
 			break;
 		default:
 		default:
 			usage();
 			usage();