aboutsummaryrefslogtreecommitdiff
path: root/libssh/auth.c
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-07-25 23:19:41 +0200
committerAndreas Schneider <mail@cynapses.org>2009-07-25 23:19:41 +0200
commit28b5d0f8751a8979231b3d2e6ccf182256219d52 (patch)
tree30618b26293838a766e56664ffcdbc0d583fb63c /libssh/auth.c
parentba217dec1c7de84b1e51807660ccd2cc86f8dde4 (diff)
downloadlibssh-28b5d0f8751a8979231b3d2e6ccf182256219d52.tar.gz
libssh-28b5d0f8751a8979231b3d2e6ccf182256219d52.tar.xz
libssh-28b5d0f8751a8979231b3d2e6ccf182256219d52.zip
Switch completly to stdint types.
Diffstat (limited to 'libssh/auth.c')
-rw-r--r--libssh/auth.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libssh/auth.c b/libssh/auth.c
index 566afcd..6c38095 100644
--- a/libssh/auth.c
+++ b/libssh/auth.c
@@ -61,7 +61,7 @@ static int wait_auth_status(SSH_SESSION *session, int kbdint) {
ssh_string auth;
int rc = SSH_AUTH_ERROR;
int cont = 1;
- u8 partial = 0;
+ uint8_t partial = 0;
enter_function();
@@ -1137,8 +1137,8 @@ static int kbdauth_info_get(SSH_SESSION *session) {
ssh_string name; /* name of the "asking" window showed to client */
ssh_string instruction;
ssh_string tmp;
- u32 nprompts;
- u32 i;
+ uint32_t nprompts;
+ uint32_t i;
enter_function();
@@ -1253,7 +1253,7 @@ static int kbdauth_info_get(SSH_SESSION *session) {
static int kbdauth_send(SSH_SESSION *session) {
ssh_string answer = NULL;
int rc = SSH_AUTH_ERROR;
- u32 i;
+ uint32_t i;
enter_function();