diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 22:19:40 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 22:19:40 +0200 |
commit | fa11083fcb1398d17b5439e7d9d2e96aae8b808c (patch) | |
tree | 59f85f0f2b6c6bf0eb91eed36c15705ebe9cb6d0 /include/libssh/libssh.h | |
parent | 2bc8819e8f68014ba35d03e56393e4d0c16386f8 (diff) | |
download | libssh-fa11083fcb1398d17b5439e7d9d2e96aae8b808c.tar.gz libssh-fa11083fcb1398d17b5439e7d9d2e96aae8b808c.tar.xz libssh-fa11083fcb1398d17b5439e7d9d2e96aae8b808c.zip |
Change refs from AGENT * to ssh_agent
Fixes also a typo in ssh_agent declaration
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r-- | include/libssh/libssh.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h index 73ea536..96687ce 100644 --- a/include/libssh/libssh.h +++ b/include/libssh/libssh.h @@ -77,9 +77,8 @@ typedef struct ssh_buffer_struct BUFFER; typedef struct ssh_public_key_struct PUBLIC_KEY; typedef struct ssh_private_key_struct PRIVATE_KEY; typedef struct ssh_channel_struct CHANNEL; -#endif typedef struct ssh_agent_struct AGENT; -//#endif +#endif typedef struct ssh_options_struct SSH_OPTIONS; typedef struct ssh_session SSH_SESSION; @@ -91,7 +90,7 @@ typedef struct ssh_public_key_struct* ssh_public_key; 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_agentT; +typedef struct ssh_agent_struct* ssh_agent; typedef struct ssh_session* ssh_session; typedef struct ssh_kbdint* ssh_kbdint; |