summaryrefslogtreecommitdiff
path: root/cli-kex.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-03-23 23:17:01 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-03-23 23:17:01 +0800
commitaf2b6b4b033dd8c1069cfc2b7524babf9374b8d6 (patch)
treeffbb540398db10f093de90383ab7795fd6e4b1c2 /cli-kex.c
parentf8c4f9afe24d9e918367dfd4a9a2a2a42ad36fc0 (diff)
downloaddropbear-af2b6b4b033dd8c1069cfc2b7524babf9374b8d6.tar.gz
Fix a few compile warnings
Diffstat (limited to 'cli-kex.c')
-rw-r--r--cli-kex.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cli-kex.c b/cli-kex.c
index 0d5a9d2..9dadb3c 100644
--- a/cli-kex.c
+++ b/cli-kex.c
@@ -309,7 +309,6 @@ static void checkhostkey(unsigned char* keyblob, unsigned int keybloblen) {
buf_putbytes(line, algoname, algolen);
buf_putbyte(line, ' ');
len = line->size - line->pos;
- TRACE(("keybloblen %d, len %d", keybloblen, len))
/* The only failure with base64 is buffer_overflow, but buf_getwriteptr
* will die horribly in the case anyway */
base64_encode(keyblob, keybloblen, buf_getwriteptr(line, len), &len);