diff options
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/time.c | 6 | ||||
-rw-r--r-- | source4/torture/basic/denytest.c | 4 | ||||
-rw-r--r-- | source4/torture/torture.c | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/source4/lib/time.c b/source4/lib/time.c index 9d906af2fa..bd8d7ddb30 100644 --- a/source4/lib/time.c +++ b/source4/lib/time.c @@ -410,9 +410,9 @@ NTTIME nttime_from_string(const char *s) return strtoull(s, NULL, 0); } -long long usec_time_diff(struct timeval *larget, struct timeval *smallt) +int64_t usec_time_diff(struct timeval *larget, struct timeval *smallt) { - long long sec_diff = larget->tv_sec - smallt->tv_sec; - return (sec_diff * 1000000) + (long long)(larget->tv_usec - smallt->tv_usec); + int64_t sec_diff = larget->tv_sec - smallt->tv_sec; + return (sec_diff * 1000000) + (int64_t)(larget->tv_usec - smallt->tv_usec); } diff --git a/source4/torture/basic/denytest.c b/source4/torture/basic/denytest.c index 13cb38633c..ec4a835240 100644 --- a/source4/torture/basic/denytest.c +++ b/source4/torture/basic/denytest.c @@ -1464,7 +1464,7 @@ BOOL torture_denytest1(int dummy) } if (torture_showall || res != denytable1[i].result) { - long long tdif; + int64_t tdif; GetTimeOfDay(&tv); tdif = usec_time_diff(&tv, &tv_start); tdif /= 1000; @@ -1558,7 +1558,7 @@ BOOL torture_denytest2(int dummy) } if (torture_showall || res != denytable2[i].result) { - long long tdif; + int64_t tdif; GetTimeOfDay(&tv); tdif = usec_time_diff(&tv, &tv_start); tdif /= 1000; diff --git a/source4/torture/torture.c b/source4/torture/torture.c index 2bb68fcce8..1610445d72 100644 --- a/source4/torture/torture.c +++ b/source4/torture/torture.c @@ -1790,11 +1790,11 @@ static BOOL run_deferopen(struct cli_state *cli, int dummy) GetTimeOfDay(&tv_end); if (NT_STATUS_EQUAL(cli_nt_error(cli->tree),NT_STATUS_SHARING_VIOLATION)) { /* Sharing violation errors need to be 1 second apart. */ - long long tdif = usec_time_diff(&tv_end, &tv_start); + int64_t tdif = usec_time_diff(&tv_end, &tv_start); if (tdif < 500000 || tdif > 1500000) { fprintf(stderr,"Timing incorrect %lld.%lld for share violation\n", - tdif / (long long)1000000, - tdif % (long long)1000000); + tdif / (int64_t)1000000, + tdif % (int64_t)1000000); } } } while (NT_STATUS_EQUAL(cli_nt_error(cli->tree),NT_STATUS_SHARING_VIOLATION)); |