1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-27 13:21:11 +03:00

Fix conflicting declarations of ssh_session and ssh_kbdint.

This commit is contained in:
Andreas Schneider
2009-07-25 20:26:01 +02:00
parent 5d1fa1be24
commit 3b8c4dc750
10 changed files with 33 additions and 33 deletions

View File

@@ -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