diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-01 00:07:26 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-01 00:07:26 +0800 |
commit | 90cf7f012cdc6143752464bc9bb2b4a9f94f7132 (patch) | |
tree | 9c2f0e8e778daa2b18b76c32f4ee826deaec70c6 /buffer.c | |
parent | 484516da516037d37747319e9b7cff91bffb6a4a (diff) |
Move the more verbose TRACE() statements into TRACE2()
Diffstat (limited to 'buffer.c')
-rw-r--r-- | buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -282,7 +282,7 @@ void buf_putbytes(buffer *buf, const unsigned char *bytes, unsigned int len) { void buf_putmpint(buffer* buf, mp_int * mp) { unsigned int len, pad = 0; - TRACE(("enter buf_putmpint")) + TRACE2(("enter buf_putmpint")) dropbear_assert(mp != NULL); @@ -318,7 +318,7 @@ void buf_putmpint(buffer* buf, mp_int * mp) { buf_incrwritepos(buf, len-pad); } - TRACE(("leave buf_putmpint")) + TRACE2(("leave buf_putmpint")) } /* Retrieve an mp_int from the buffer. |