From 5f7c84f900b81e3bbff55378f8170ddf150daf9c Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Tue, 4 Oct 2005 22:11:19 +0000 Subject: added the gcrypt patch (without gcrypt as default library). still needs tests. git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@38 7dcaeef0-15fb-0310-b436-a5af3365683c --- libssh/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/string.c') diff --git a/libssh/string.c b/libssh/string.c index 2f14c14..2e6c3bf 100644 --- a/libssh/string.c +++ b/libssh/string.c @@ -26,7 +26,7 @@ MA 02111-1307, USA. */ #include #include "libssh/priv.h" -STRING *string_new(u32 size){ +STRING *string_new(unsigned int size){ STRING *str=malloc(size + 4); str->size=htonl(size); return str; -- cgit