diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-12-01 16:15:54 +0100 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-12-01 16:15:54 +0100 |
commit | 48b719cf68db72f77a650e235ffa87bdd925ed6b (patch) | |
tree | f8da1e5252c785b5e7f372252028f1a6875b9fc8 /libssh/session.c | |
parent | 96afa4530c98447d1d8a8971da8cc84168983e81 (diff) | |
download | libssh-48b719cf68db72f77a650e235ffa87bdd925ed6b.tar.gz libssh-48b719cf68db72f77a650e235ffa87bdd925ed6b.tar.xz libssh-48b719cf68db72f77a650e235ffa87bdd925ed6b.zip |
Fixed uint* to work on Windows.
Thanks to Patrick Spendrin.
Diffstat (limited to 'libssh/session.c')
-rw-r--r-- | libssh/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |