From e776dc16c958c71a83dffe06a85b5f98f3226e82 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Fri, 24 Jul 2009 20:49:46 +0200 Subject: Fixed namespace problem in public structures changed struct string_struct to ssh_string_struct buffer_struct to ssh_buffer_struct and so on. Should not break apps using the caps version of these --- libssh/messages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/messages.c') diff --git a/libssh/messages.c b/libssh/messages.c index d67f998..8bcb918 100644 --- a/libssh/messages.c +++ b/libssh/messages.c @@ -92,7 +92,7 @@ static int ssh_message_service_request_reply_default(SSH_MESSAGE *msg) { return ssh_message_service_reply_success(msg); } int ssh_message_service_reply_success(SSH_MESSAGE *msg) { - struct string_struct *service; + struct ssh_string_struct *service; SSH_SESSION *session=msg->session; if (msg == NULL) { return SSH_ERROR; -- cgit