From 545d40133a9077d66c5c2cd4d0d4281b18578408 Mon Sep 17 00:00:00 2001 From: Shibby Date: Sat, 16 May 2015 13:11:28 +0200 Subject: [PATCH] GUI: bittorrent - allow set download and upload speed to 0 --- release/src/router/httpd/tomato.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/src/router/httpd/tomato.c b/release/src/router/httpd/tomato.c index 997c5a8c15..c2e953e145 100644 --- a/release/src/router/httpd/tomato.c +++ b/release/src/router/httpd/tomato.c @@ -1254,8 +1254,8 @@ static const nvset_t nvset_list[] = { { "bt_port_gui", V_PORT }, { "bt_dl_enable", V_01 }, { "bt_ul_enable", V_01 }, - { "bt_dl", V_RANGE(1, 999999) }, - { "bt_ul", V_RANGE(1, 999999) }, + { "bt_dl", V_RANGE(0, 999999) }, + { "bt_ul", V_RANGE(0, 999999) }, { "bt_peer_limit_global", V_RANGE(10, 1000) }, { "bt_peer_limit_per_torrent", V_RANGE(1, 200) }, { "bt_ul_slot_per_torrent", V_RANGE(1, 50) }, -- 2.11.4.GIT