summaryrefslogtreecommitdiffstats
path: root/include/libssh/libssh.h
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-02-02 15:39:09 +0000
committerAndreas Schneider <mail@cynapses.org>2009-02-02 15:39:09 +0000
commit5d798f62257b29dbcb7a4bdc37e7585b4c4894a3 (patch)
tree35ef615e016d201764d13626e536826cb1e19bec /include/libssh/libssh.h
parent7250e03f97a46aa8c1229d072b1f6f3a6e13a9a0 (diff)
downloadlibssh-5d798f62257b29dbcb7a4bdc37e7585b4c4894a3.tar.gz
libssh-5d798f62257b29dbcb7a4bdc37e7585b4c4894a3.tar.xz
libssh-5d798f62257b29dbcb7a4bdc37e7585b4c4894a3.zip
Use unsigned values for length in buffer functions.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@211 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r--include/libssh/libssh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index 5adfcf7a..9bde42e5 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -315,7 +315,7 @@ void buffer_free(BUFFER *buffer);
/* buffer_get returns a pointer to the begining of the buffer. no position is taken into account */
void *buffer_get(BUFFER *buffer);
/* same here */
-int buffer_get_len(BUFFER *buffer);
+u32 buffer_get_len(BUFFER *buffer);
/* in auth.c */