From e77c17ec3e2aa65b458a7fb243b5806cb12fff44 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 22 Apr 2009 11:17:38 +0200 Subject: Remove some shadowed definition warnings --- source3/torture/torture.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/torture') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 7e2b3a56e5..35004234ab 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -5112,7 +5112,7 @@ static bool run_mangle1(int dummy) int fnum; fstring alt_name; NTSTATUS status; - time_t change, access, write; + time_t change_time, access_time, write_time; SMB_OFF_T size; uint16_t mode; @@ -5148,8 +5148,8 @@ static bool run_mangle1(int dummy) } cli_close(cli, fnum); - if (!cli_qpathinfo(cli, alt_name, &change, &access, &write, &size, - &mode)) { + if (!cli_qpathinfo(cli, alt_name, &change_time, &access_time, + &write_time, &size, &mode)) { d_printf("cli_qpathinfo(%s) failed: %s\n", alt_name, cli_errstr(cli)); return false; -- cgit