aboutsummaryrefslogtreecommitdiff
path: root/libssh/sftp.c
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-07-25 20:26:01 +0200
committerAndreas Schneider <mail@cynapses.org>2009-07-25 20:26:56 +0200
commit3b8c4dc750352288febb282c9f52f2cd20a760d5 (patch)
tree4b6d29f2537380216057550f871f686434aa5875 /libssh/sftp.c
parent5d1fa1be240018a53364654f4b5005a1e4d27093 (diff)
downloadlibssh-3b8c4dc750352288febb282c9f52f2cd20a760d5.tar.gz
libssh-3b8c4dc750352288febb282c9f52f2cd20a760d5.tar.xz
libssh-3b8c4dc750352288febb282c9f52f2cd20a760d5.zip
Fix conflicting declarations of ssh_session and ssh_kbdint.
Diffstat (limited to 'libssh/sftp.c')
-rw-r--r--libssh/sftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/sftp.c b/libssh/sftp.c
index 319e96f..df8bc2c 100644
--- a/libssh/sftp.c
+++ b/libssh/sftp.c
@@ -109,7 +109,7 @@ SFTP_SESSION *sftp_server_new(SSH_SESSION *session, ssh_channel chan){
}
int sftp_server_init(SFTP_SESSION *sftp){
- struct ssh_session *session = sftp->session;
+ ssh_session session = sftp->session;
SFTP_PACKET *packet = NULL;
ssh_buffer reply = NULL;
u32 version;