summaryrefslogtreecommitdiff
path: root/src/tethering.c
diff options
context:
space:
mode:
authorDaniel Wagner <daniel.wagner@bmw-carit.de>2012-02-20 10:00:34 +0100
committerSamuel Ortiz <sameo@linux.intel.com>2012-02-24 23:29:48 +0100
commitb0e38727bd555861772562f4ab191d0216d471d3 (patch)
treef7c28ac6057d61f93f4455e60445e6d82d6c3798 /src/tethering.c
parent84ffea157a8eb776b793ddd5012eb4752e0cd6fc (diff)
downloadconnman-b0e38727bd555861772562f4ab191d0216d471d3.tar.gz
connman-b0e38727bd555861772562f4ab191d0216d471d3.tar.bz2
connman-b0e38727bd555861772562f4ab191d0216d471d3.zip
tethering: Fix pool size request
Math is hard, I know. Fixes BMC#24898
Diffstat (limited to 'src/tethering.c')
-rw-r--r--src/tethering.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tethering.c b/src/tethering.c
index 161e9712..7fa4ef16 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");