diff options
author | Matt Johnston <matt@ucc.asn.au> | 2011-11-07 19:31:53 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2011-11-07 19:31:53 +0800 |
commit | 8ee78594f83db2192eb2b5016ff6dcd430236583 (patch) | |
tree | 56dbdab2f3d0d86f4d0fa81d35ff671bf6409ba7 | |
parent | 7c40660fcd28014bcbbae34abd1dee2a314478e9 (diff) | |
download | dropbear-8ee78594f83db2192eb2b5016ff6dcd430236583.tar.gz |
Use "uint64_t" instead of "u_int64_t" since the Solaris doesn't have the
latter
-rw-r--r-- | scp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -773,7 +773,7 @@ bwlimit(int amount) { static struct timeval bwstart, bwend; static int lamt, thresh = 16384; - u_int64_t waitlen; + uint64_t waitlen; struct timespec ts, rm; if (!timerisset(&bwstart)) { |