diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-05-26 21:56:42 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-05-26 21:56:42 +0200 |
commit | 809b3adeba94c1128c7a2ed5354ade305156b8b8 (patch) | |
tree | 7bf0d4e99f18415a9e18829551f850bc46337e50 /tests | |
parent | 34b05fd2dc7ead24386b24e9471fad729cb4189b (diff) | |
download | libssh-809b3adeba94c1128c7a2ed5354ade305156b8b8.tar.gz libssh-809b3adeba94c1128c7a2ed5354ade305156b8b8.tar.xz libssh-809b3adeba94c1128c7a2ed5354ade305156b8b8.zip |
Fix compilation without server and sftp modes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/torture.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/torture.c b/tests/torture.c index ff57c64a..1dbae46d 100644 --- a/tests/torture.c +++ b/tests/torture.c @@ -216,6 +216,8 @@ failed: return NULL; } +#ifdef WITH_SFTP + struct torture_sftp *torture_sftp_session(ssh_session session) { struct torture_sftp *t; char template[] = "/tmp/ssh_torture_XXXXXX"; @@ -282,7 +284,10 @@ void torture_sftp_close(struct torture_sftp *t) { free(t->testdir); free(t); } -#endif +#endif /* WITH_SFTP */ + +#endif /* _WIN32 */ + int torture_libssh_verbosity(void){ return verbosity; |