diff options
author | Niclas Eklund <[email protected]> | 2011-03-08 14:27:33 +0100 |
---|---|---|
committer | Niclas Eklund <[email protected]> | 2011-05-19 14:38:21 +0200 |
commit | 9100921827bdfb32bcfab2569618393997d5fef4 (patch) | |
tree | 56ccd56126a3be8f17d447476a55102ea00d125e /lib | |
parent | a488a4d45a392b5cf4cc46195a3ad2df32389582 (diff) | |
download | otp-9100921827bdfb32bcfab2569618393997d5fef4.tar.gz otp-9100921827bdfb32bcfab2569618393997d5fef4.tar.bz2 otp-9100921827bdfb32bcfab2569618393997d5fef4.zip |
Fixed include problem.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssh/test/ssh_test_lib.erl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_test_lib.erl b/lib/ssh/test/ssh_test_lib.erl index 4fd47da090..8b7d5e2992 100644 --- a/lib/ssh/test/ssh_test_lib.erl +++ b/lib/ssh/test/ssh_test_lib.erl @@ -27,10 +27,18 @@ -include_lib("public_key/include/public_key.hrl"). -include("test_server.hrl"). -include("test_server_line.hrl"). --include_lib("ssh/src/ssh.hrl"). -define(TIMEOUT, 50000). + +-record(ssh_key, + { + type, + public, + private, + comment = "" + }). + connect(Options) -> connect(hostname(), inet_port(), Options). |