summaryrefslogtreecommitdiff
path: root/src/protocol/internal/fqterm_ssh_kex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/internal/fqterm_ssh_kex.cpp')
-rw-r--r--src/protocol/internal/fqterm_ssh_kex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/internal/fqterm_ssh_kex.cpp b/src/protocol/internal/fqterm_ssh_kex.cpp
index e2975d1..910eb26 100644
--- a/src/protocol/internal/fqterm_ssh_kex.cpp
+++ b/src/protocol/internal/fqterm_ssh_kex.cpp
@@ -178,7 +178,7 @@ void FQTermSSH1Kex::makeSessionKey() {
packet_sender_->startPacket(SSH1_CMSG_SESSION_KEY);
packet_sender_->putByte(SSH_CIPHER_3DES);
- packet_sender_->putRawData((const char*)cookie_, 8);
+ packet_sender_->putRawData((const uint8_t*)cookie_, 8);
packet_sender_->putBN(key);
BN_free(key);