From c5eb048789e3a20a881d4b80f7feb5bb6d97486c Mon Sep 17 00:00:00 2001 From: P2P-Next Date: Fri, 20 Aug 2010 16:20:27 +0300 Subject: [PATCH] instrumentation/hrktorrent: fix hrktorrent settings configuration from "nodht" to "dht" and from "noupnp" to "upnp" --- instrumentation/hrktorrent/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instrumentation/hrktorrent/main.cpp b/instrumentation/hrktorrent/main.cpp index bb506bd..e6dcb07 100644 --- a/instrumentation/hrktorrent/main.cpp +++ b/instrumentation/hrktorrent/main.cpp @@ -82,10 +82,10 @@ parseargs(int argc, char** argv) Settings->Set("limitlocal", 1); break; case 't': - Settings->Set("nodht", 1); + Settings->Set("dht", 0); break; case 'n': - Settings->Set("noupnp", 1); + Settings->Set("upnp", 0); break; case 's': Settings->Set("seed", 0); -- 2.20.1