summaryrefslogtreecommitdiffstats
path: root/libssh/agent.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-07-24 21:56:11 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2009-07-24 21:56:11 +0200
commit91d0660cc3b0f72b690678862bb21cbe0328a186 (patch)
tree023c86ea3cbbcfa9a86d8fe887ff03730ff86571 /libssh/agent.c
parentfb5769b4be79943b7c53ebc0d5adb86ed77b9925 (diff)
downloadlibssh-91d0660cc3b0f72b690678862bb21cbe0328a186.tar.gz
libssh-91d0660cc3b0f72b690678862bb21cbe0328a186.tar.xz
libssh-91d0660cc3b0f72b690678862bb21cbe0328a186.zip
Changed all occurences of BUFFER * to ssh_buffer
Diffstat (limited to 'libssh/agent.c')
-rw-r--r--libssh/agent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libssh/agent.c b/libssh/agent.c
index 98a583c..ecc9b4d 100644
--- a/libssh/agent.c
+++ b/libssh/agent.c
@@ -263,8 +263,8 @@ static int agent_talk(struct ssh_session *session,
}
int agent_get_ident_count(struct ssh_session *session) {
- BUFFER *request = NULL;
- BUFFER *reply = NULL;
+ ssh_buffer request = NULL;
+ ssh_buffer reply = NULL;
unsigned int type = 0;
unsigned int c1 = 0, c2 = 0;
u8 buf[4] = {0};