summaryrefslogtreecommitdiffhomepage
path: root/rsa.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2017-06-03 09:41:09 +0800
committerGitHub <noreply@github.com>2017-06-03 09:41:09 +0800
commit4bba3268d5ad0a450f0f3d1b07cd600add47062b (patch)
tree079f7af36bf97dfa3bbe15650b0643351c045b34 /rsa.c
parent92c4f20089ec1f408e0147911631b750617b0ec9 (diff)
parent5f76e4c1ede157ca5a51c2189984e8ee57778d86 (diff)
Merge pull request #40 from fperrad/20161119_lint
more lintings
Diffstat (limited to 'rsa.c')
-rw-r--r--rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa.c b/rsa.c
index 0e6639e..c09447f 100644
--- a/rsa.c
+++ b/rsa.c
@@ -346,7 +346,7 @@ void buf_put_rsa_sign(buffer* buf, dropbear_rsa_key *key, buffer *data_buf) {
buf_incrwritepos(buf, ssize);
mp_clear(&rsa_s);
-#if defined(DEBUG_RSA) && defined(DEBUG_TRACE)
+#if defined(DEBUG_RSA) && DEBUG_TRACE
if (!debug_trace) {
printhex("RSA sig", buf->data, buf->len);
}