From 5415f0b8c12ae34c7b81b013fca0a3c2706bcb6e Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 9 Jan 2014 18:11:03 +0200 Subject: [PATCH] l2test: Fix using incorrect size of option Use size of option instead of size of pointer --- tools/l2test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/l2test.c b/tools/l2test.c index 9a7c809a7..aaa160822 100644 --- a/tools/l2test.c +++ b/tools/l2test.c @@ -287,7 +287,7 @@ static int setopts(int sk, struct l2cap_options *opts) { if (bdaddr_type == BDADDR_BREDR || cid) return setsockopt(sk, SOL_L2CAP, L2CAP_OPTIONS, opts, - sizeof(opts)); + sizeof(*opts)); return setsockopt(sk, SOL_BLUETOOTH, BT_RCVMTU, &opts->imtu, sizeof(opts->imtu)); -- 2.47.3