diff options
author | Matt Johnston <matt@ucc.asn.au> | 2016-03-15 21:41:22 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2016-03-15 21:41:22 +0800 |
commit | 6bfbcdbfdb00f22727cfb749b1c60a80210ecfc7 (patch) | |
tree | 3e6f647d212466933d744e47dcdbcf97ff00ecfc /dbutil.c | |
parent | fdc61f3ab2c07f3f8d0546ee83b1a6776cc1786e (diff) | |
parent | 645b2541732cebbccd499c4e8bf18f86d77bff0f (diff) |
Merge branch 'fperrad-20151231_indent'
Diffstat (limited to 'dbutil.c')
-rw-r--r-- | dbutil.c | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -157,26 +157,26 @@ void debug_start_net() { if (getenv("DROPBEAR_DEBUG_NET_TIMESTAMP")) { - /* Timestamps start from first network activity */ - struct timeval tv; - gettimeofday(&tv, NULL); - debug_start_time = tv.tv_sec + (tv.tv_usec / 1000000.0); - TRACE(("Resetting Dropbear TRACE timestamps")) + /* Timestamps start from first network activity */ + struct timeval tv; + gettimeofday(&tv, NULL); + debug_start_time = tv.tv_sec + (tv.tv_usec / 1000000.0); + TRACE(("Resetting Dropbear TRACE timestamps")) } } static double time_since_start() { - double nowf; - struct timeval tv; - gettimeofday(&tv, NULL); - nowf = tv.tv_sec + (tv.tv_usec / 1000000.0); - if (debug_start_time < 0) - { - debug_start_time = nowf; - return 0; - } - return nowf - debug_start_time; + double nowf; + struct timeval tv; + gettimeofday(&tv, NULL); + nowf = tv.tv_sec + (tv.tv_usec / 1000000.0); + if (debug_start_time < 0) + { + debug_start_time = nowf; + return 0; + } + return nowf - debug_start_time; } void dropbear_trace(const char* format, ...) { |