From c9e31c96565de920391caf5d2fdf281cb0da9ff5 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Fri, 9 Nov 2012 01:45:17 -0500 Subject: [PATCH] fix --- tests/ssh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ssh.cpp b/tests/ssh.cpp index c21e949..0254bb6 100644 --- a/tests/ssh.cpp +++ b/tests/ssh.cpp @@ -14,7 +14,7 @@ int main( int argc, char** argv ) { // fc::string pw; // std::cin>>pw; fc::ssh::client c; - c.connect( "dlarimer", "yyRK@$p9", "localhost" ); + c.connect( "dlarimer", "", "localhost" ); fc::ssh::process proc = c.exec( "/bin/ls" ); while( !proc.out_stream().eof() ) { fc::string line;