aboutsummaryrefslogtreecommitdiff
path: root/libssh/packet.c
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-12-01 16:15:54 +0100
committerAndreas Schneider <mail@cynapses.org>2009-12-01 16:15:54 +0100
commit48b719cf68db72f77a650e235ffa87bdd925ed6b (patch)
treef8da1e5252c785b5e7f372252028f1a6875b9fc8 /libssh/packet.c
parent96afa4530c98447d1d8a8971da8cc84168983e81 (diff)
downloadlibssh-48b719cf68db72f77a650e235ffa87bdd925ed6b.tar.gz
libssh-48b719cf68db72f77a650e235ffa87bdd925ed6b.tar.xz
libssh-48b719cf68db72f77a650e235ffa87bdd925ed6b.zip
Fixed uint* to work on Windows.
Thanks to Patrick Spendrin.
Diffstat (limited to 'libssh/packet.c')
-rw-r--r--libssh/packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/packet.c b/libssh/packet.c
index 2a5f1b39..caa47058 100644
--- a/libssh/packet.c
+++ b/libssh/packet.c
@@ -309,7 +309,7 @@ void ssh_packet_set_default_callbacks(ssh_session session){
* @brief dispatch the call of packet handlers callbacks for a received packet
* @param type type of packet
*/
-void ssh_packet_process(ssh_session session, u_int8_t type){
+void ssh_packet_process(ssh_session session, uint8_t type){
struct ssh_iterator *i;
int r;
ssh_packet_callbacks cb;