Browse Source

P2P: Coding style cleanup

Jouni Malinen 13 years ago
parent
commit
e24b918202
1 changed files with 6 additions and 7 deletions
  1. 6 7
      wpa_supplicant/dbus/dbus_new_handlers_p2p.c

+ 6 - 7
wpa_supplicant/dbus/dbus_new_handlers_p2p.c

@@ -484,25 +484,24 @@ DBusMessage * wpas_dbus_handler_p2p_connect(DBusMessage *message,
 	} else {
 	} else {
 		switch (new_pin) {
 		switch (new_pin) {
 		case -2:
 		case -2:
-			err_msg = "connect failed due to"
-					" channel unavailability.";
+			err_msg = "connect failed due to channel "
+				"unavailability.";
 			iface = WPAS_DBUS_ERROR_CONNECT_CHANNEL_UNAVAILABLE;
 			iface = WPAS_DBUS_ERROR_CONNECT_CHANNEL_UNAVAILABLE;
 			break;
 			break;
 
 
 		case -3:
 		case -3:
-			err_msg = "connect failed due to"
-					" unsupported channel.";
+			err_msg = "connect failed due to unsupported channel.";
 			iface = WPAS_DBUS_ERROR_CONNECT_CHANNEL_UNSUPPORTED;
 			iface = WPAS_DBUS_ERROR_CONNECT_CHANNEL_UNSUPPORTED;
 			break;
 			break;
 
 
 		default:
 		default:
-			err_msg = "connect failed due to"
-					" unspecified error.";
+			err_msg = "connect failed due to unspecified error.";
 			iface = WPAS_DBUS_ERROR_CONNECT_UNSPECIFIED_ERROR;
 			iface = WPAS_DBUS_ERROR_CONNECT_UNSPECIFIED_ERROR;
 			break;
 			break;
 		}
 		}
+
 		/*
 		/*
-		 * TODO::
+		 * TODO:
 		 * Do we need specialized errors corresponding to above
 		 * Do we need specialized errors corresponding to above
 		 * error conditions as against just returning a different
 		 * error conditions as against just returning a different
 		 * error message?
 		 * error message?