summaryrefslogtreecommitdiff
path: root/dss.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-04-01 00:07:26 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-04-01 00:07:26 +0800
commit90cf7f012cdc6143752464bc9bb2b4a9f94f7132 (patch)
tree9c2f0e8e778daa2b18b76c32f4ee826deaec70c6 /dss.c
parent484516da516037d37747319e9b7cff91bffb6a4a (diff)
downloaddropbear-90cf7f012cdc6143752464bc9bb2b4a9f94f7132.tar.gz
Move the more verbose TRACE() statements into TRACE2()
Diffstat (limited to 'dss.c')
-rw-r--r--dss.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dss.c b/dss.c
index d984669..75dc0d0 100644
--- a/dss.c
+++ b/dss.c
@@ -101,9 +101,9 @@ int buf_get_dss_priv_key(buffer* buf, dropbear_dss_key *key) {
/* Clear and free the memory used by a public or private key */
void dss_key_free(dropbear_dss_key *key) {
- TRACE(("enter dsa_key_free"))
+ TRACE2(("enter dsa_key_free"))
if (key == NULL) {
- TRACE(("enter dsa_key_free: key == NULL"))
+ TRACE2(("enter dsa_key_free: key == NULL"))
return;
}
if (key->p) {
@@ -127,7 +127,7 @@ void dss_key_free(dropbear_dss_key *key) {
m_free(key->x);
}
m_free(key);
- TRACE(("leave dsa_key_free"))
+ TRACE2(("leave dsa_key_free"))
}
/* put the dss public key into the buffer in the required format: