From b0e38727bd555861772562f4ab191d0216d471d3 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Mon, 20 Feb 2012 10:00:34 +0100 Subject: [PATCH] tethering: Fix pool size request Math is hard, I know. Fixes BMC#24898 --- src/tethering.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tethering.c b/src/tethering.c index 161e971..7fa4ef1 100644 --- a/src/tethering.c +++ b/src/tethering.c @@ -194,7 +194,7 @@ void __connman_tethering_set_enabled(void) return; index = connman_inet_ifindex(BRIDGE_NAME); - dhcp_ippool = __connman_ippool_create(index, 2, 253, + dhcp_ippool = __connman_ippool_create(index, 2, 252, tethering_restart, NULL); if (dhcp_ippool == NULL) { connman_error("Fail to create IP pool"); -- 2.7.4