summaryrefslogtreecommitdiff
path: root/source4/torture/gentest.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-05-22 17:12:22 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:08:26 -0500
commit3553a24dfee94e96d40a5518c3ee90ed2480b97c (patch)
tree694cec97203e5a41bb7d3d1848493f119f991513 /source4/torture/gentest.c
parentf3bf3dd80ab5d0d44510dab409d02b6f47798bd8 (diff)
downloadsamba-3553a24dfee94e96d40a5518c3ee90ed2480b97c.tar.gz
samba-3553a24dfee94e96d40a5518c3ee90ed2480b97c.tar.bz2
samba-3553a24dfee94e96d40a5518c3ee90ed2480b97c.zip
r15813: Use labs() rather than abs() for 32-bit integers. Caught by the IBM checker.
(This used to be commit 6e37084965d17d1816256d8de326e2fc6c828e13)
Diffstat (limited to 'source4/torture/gentest.c')
-rw-r--r--source4/torture/gentest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/gentest.c b/source4/torture/gentest.c
index 13dbae4755..0373dd452d 100644
--- a/source4/torture/gentest.c
+++ b/source4/torture/gentest.c
@@ -206,7 +206,7 @@ static BOOL connect_servers(void)
static uint_t time_skew(void)
{
uint_t ret;
- ret = abs(servers[0].cli[0]->transport->negotiate.server_time -
+ ret = labs(servers[0].cli[0]->transport->negotiate.server_time -
servers[1].cli[0]->transport->negotiate.server_time);
return ret + 300;
}
@@ -1036,7 +1036,7 @@ again:
} while(0)
#define CHECK_TIMES_EQUAL(field) do { \
- if (abs(parm[0].field - parm[1].field) > time_skew() && \
+ if (labs(parm[0].field - parm[1].field) > time_skew() && \
!ignore_pattern(#field)) { \
printf("Mismatch in %s - 0x%x 0x%x\n", #field, \
(int)parm[0].field, (int)parm[1].field); \
@@ -1045,7 +1045,7 @@ again:
} while(0)
#define CHECK_NTTIMES_EQUAL(field) do { \
- if (abs(nt_time_to_unix(parm[0].field) - \
+ if (labs(nt_time_to_unix(parm[0].field) - \
nt_time_to_unix(parm[1].field)) > time_skew() && \
!ignore_pattern(#field)) { \
printf("Mismatch in %s - 0x%x 0x%x\n", #field, \