Diff between 04ff02f9bbf4394bccd489ff349ddf9386e678bf and 0c5f0168675d85ad8d1848669d2c103c8580050c

Changed Files

File Additions Deletions Status
attrib/gatt.c +0 -3 modified

Full Patch

diff --git a/attrib/gatt.c b/attrib/gatt.c
index 360218b..1ed78ec 100644
--- a/attrib/gatt.c
+++ b/attrib/gatt.c
@@ -71,13 +71,11 @@ static guint16 encode_discover_primary(uint16_t start, uint16_t end,
 {
 	bt_uuid_t prim;
 	guint16 plen;
-	uint8_t op;
 
 	bt_uuid16_create(&prim, GATT_PRIM_SVC_UUID);
 
 	if (uuid == NULL) {
 		/* Discover all primary services */
-		op = ATT_OP_READ_BY_GROUP_REQ;
 		plen = enc_read_by_grp_req(start, end, &prim, pdu, len);
 	} else {
 		uint16_t u16;
@@ -86,7 +84,6 @@ static guint16 encode_discover_primary(uint16_t start, uint16_t end,
 		int vlen;
 
 		/* Discover primary service by service UUID */
-		op = ATT_OP_FIND_BY_TYPE_REQ;
 
 		if (uuid->type == BT_UUID16) {
 			u16 = htobs(uuid->value.u16);