From 3524d98e35685875e95daee7fa86a9c2178264a4 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 23 Jan 2005 19:46:10 +0000 Subject: Only set link mode when needed --- test/l2test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/l2test.c') diff --git a/test/l2test.c b/test/l2test.c index e9a7d50d..06233d3f 100644 --- a/test/l2test.c +++ b/test/l2test.c @@ -286,7 +286,7 @@ static void do_listen(void (*handler)(int sk)) if (secure) opt |= L2CAP_LM_SECURE; - if (setsockopt(s, SOL_L2CAP, L2CAP_LM, &opt, sizeof(opt)) < 0) { + if (opt && setsockopt(s, SOL_L2CAP, L2CAP_LM, &opt, sizeof(opt)) < 0) { syslog(LOG_ERR, "Can't set L2CAP link mode: %s (%d)", strerror(errno), errno); exit(1); } -- cgit