commit a815ce4f00a066d8d4b37b2a557dc7c415c77707 Author: Tomas Touceda chiiph@torproject.org Date: Wed Aug 10 13:13:10 2011 -0300
TorButton needs the plaintext password, not the hashed one --- src/vidalia/MainWindow.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/vidalia/MainWindow.cpp b/src/vidalia/MainWindow.cpp index c878fd1..4e697f6 100644 --- a/src/vidalia/MainWindow.cpp +++ b/src/vidalia/MainWindow.cpp @@ -2040,7 +2040,7 @@ MainWindow::updateBrowserEnv() { }
if(settings.getAuthenticationMethod() == TorSettings::PasswordAuth) { - env << QString("TOR_CONTROL_PASSWD=%1").arg(TorSettings::hashPassword(settings.getControlPassword())); + env << QString("TOR_CONTROL_PASSWD=%1").arg(settings.getControlPassword()); env << QString("TOR_CONTROL_PORT=%1").arg(_autoControlPort); }
tor-commits@lists.torproject.org