From: Daniel Wagner Date: Mon, 20 Feb 2012 09:00:34 +0000 (+0100) Subject: tethering: Fix pool size request X-Git-Tag: accepted/2.0alpha-wayland/20121110.002834~575 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0e38727bd555861772562f4ab191d0216d471d3;p=profile%2Fivi%2Fconnman.git tethering: Fix pool size request Math is hard, I know. Fixes BMC#24898 --- 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");