diff options
author | Matt Johnston <matt@ucc.asn.au> | 2004-08-18 15:48:25 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2004-08-18 15:48:25 +0000 |
commit | 1e94425015464ee52dc50030dc7d87d1c8375f05 (patch) | |
tree | ce00d6dc804db435eb8b942fa076927e5aef9682 /dropbearconvert.c | |
parent | a69e355a0630c1fe99f06e163f8260974758c193 (diff) |
DEBUG_TRACE now only triggers with -v on the cmdline
--HG--
extra : convert_revision : 91ef4ca657cd116dba148a50a90c8bcc5d206d4b
Diffstat (limited to 'dropbearconvert.c')
-rw-r--r-- | dropbearconvert.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dropbearconvert.c b/dropbearconvert.c index 482a820..9e16fe7 100644 --- a/dropbearconvert.c +++ b/dropbearconvert.c @@ -62,6 +62,11 @@ int main(int argc, char ** argv) { const char* infile; const char* outfile; +#ifdef DEBUG_TRACE + /* It's hard for it to get in the way _too_ much */ + debug_trace = 1; +#endif + /* get the commandline options */ if (argc != 5) { fprintf(stderr, "All arguments must be specified\n"); |