aboutsummaryrefslogtreecommitdiff
path: root/include/libssh/libssh.h
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 /include/libssh/libssh.h
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 'include/libssh/libssh.h')
-rw-r--r--include/libssh/libssh.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 699fe28e..161a8f5f 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -81,8 +81,8 @@ typedef struct ssh_agent_struct AGENT;
#endif
typedef struct ssh_options_struct SSH_OPTIONS;
-typedef struct ssh_session SSH_SESSION;
-typedef struct ssh_kbdint SSH_KBDINT;
+typedef struct ssh_session_struct SSH_SESSION;
+typedef struct ssh_kbdint_struct SSH_KBDINT;
typedef struct ssh_string_struct* ssh_string;
typedef struct ssh_buffer_struct* ssh_buffer;
@@ -91,8 +91,8 @@ typedef struct ssh_private_key_struct* ssh_private_key;
typedef struct ssh_options_struct* ssh_options;
typedef struct ssh_channel_struct* ssh_channel;
typedef struct ssh_agent_struct* ssh_agent;
-typedef struct ssh_session* ssh_session;
-typedef struct ssh_kbdint* ssh_kbdint;
+typedef struct ssh_session_struct* ssh_session;
+typedef struct ssh_kbdint_struct* ssh_kbdint;
/* Socket type */
#ifdef _WIN32