Fix pairing issue in PairingConsent API.

Change-Id: I69f1de27136dc0a19d4670a1f9acf93a376ae03d
diff --git a/plugins/hciops.c b/plugins/hciops.c
index 40c049c..76ad1ea 100644
--- a/plugins/hciops.c
+++ b/plugins/hciops.c
@@ -1013,11 +1013,12 @@
 	 * call PairingConsent callback for incoming requests. */
 	if (conn->bonding_initiator == FALSE) {
 		if ((conn->loc_cap == 0x01) &&
-			(conn->rem_cap == 0x00 || conn->rem_cap == 0x03))
+			(conn->rem_cap == 0x00 || conn->rem_cap == 0x03)) {
 			if (btd_event_user_consent(&dev->bdaddr, &req->bdaddr)
 					< 0)
 				goto fail;
 			return;
+		}
 	}
 
 	/* If no side requires MITM protection; auto-accept */