Fix cast warnings on 64bits

This commit is contained in:
Aris Adamantiadis
2013-11-04 10:49:32 +01:00
parent cb165df64e
commit b12f3f38c7
2 changed files with 3 additions and 3 deletions

View File

@@ -128,7 +128,7 @@ int ssh_client_curve25519_reply(ssh_session session, ssh_buffer packet){
}
if (ssh_string_len(q_s_string) != CURVE25519_PUBKEY_SIZE){
ssh_set_error(session, SSH_FATAL, "Incorrect size for server Curve25519 public key: %d",
ssh_string_len(q_s_string));
(int)ssh_string_len(q_s_string));
ssh_string_free(q_s_string);
goto error;
}
@@ -182,7 +182,7 @@ int ssh_server_curve25519_init(ssh_session session, ssh_buffer packet){
}
if (ssh_string_len(q_c_string) != CURVE25519_PUBKEY_SIZE){
ssh_set_error(session, SSH_FATAL, "Incorrect size for server Curve25519 public key: %d",
ssh_string_len(q_c_string));
(int)ssh_string_len(q_c_string));
ssh_string_free(q_c_string);
return SSH_ERROR;
}

View File

@@ -65,7 +65,7 @@ static int current_timestring(int hires, char *buf, size_t len)
if (hires) {
strftime(tbuf, sizeof(tbuf) - 1, "%Y/%m/%d %H:%M:%S", tm);
snprintf(buf, len, "%s.%06ld", tbuf, tv.tv_usec);
snprintf(buf, len, "%s.%06ld", tbuf, (long)tv.tv_usec);
} else {
strftime(tbuf, sizeof(tbuf) - 1, "%Y/%m/%d %H:%M:%S", tm);
snprintf(buf, len, "%s", tbuf);