From 48b719cf68db72f77a650e235ffa87bdd925ed6b Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 1 Dec 2009 16:15:54 +0100 Subject: Fixed uint* to work on Windows. Thanks to Patrick Spendrin. --- libssh/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/session.c') diff --git a/libssh/session.c b/libssh/session.c index 8145a3c..cd25624 100644 --- a/libssh/session.c +++ b/libssh/session.c @@ -370,7 +370,7 @@ int ssh_get_version(ssh_session session) { * @brief handles a SSH_DISCONNECT packet */ SSH_PACKET_CALLBACK(ssh_packet_disconnect_callback){ - u_int32_t code; + uint32_t code; char *error; ssh_string error_s; (void)user; -- cgit