From aada7196940377ca6942eed470fc2e0e42f71b32 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 16 Sep 2010 19:02:27 +0200 Subject: s3: use nsec_time_diff instead of TspecDiff --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index c911559911..cb9ba24e16 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1119,7 +1119,7 @@ static int do_get(const char *rname, const char *lname_in, bool reget) int this_time; clock_gettime_mono(&tp_end); - this_time = TspecDiff(&tp_start,&tp_end); + this_time = nsec_time_diff(&tp_start,&tp_end)/1000000; get_total_time_ms += this_time; get_total_size += nread; @@ -1768,7 +1768,7 @@ static int do_put(const char *rname, const char *lname, bool reput) int this_time; clock_gettime_mono(&tp_end); - this_time = TspecDiff(&tp_start,&tp_end); + this_time = nsec_time_diff(&tp_start,&tp_end)/1000000; put_total_time_ms += this_time; put_total_size += state.nread; -- cgit