diff options
author | Volker Lendecke <vl@samba.org> | 2009-04-22 11:17:38 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-04-22 11:19:13 +0200 |
commit | e77c17ec3e2aa65b458a7fb243b5806cb12fff44 (patch) | |
tree | e1d88b678a4eec9a42ac2f9f6a6e37dc11047069 /source3 | |
parent | 703d5897701c22250a2d6e8ffba9ecf01db58f1f (diff) | |
download | samba-e77c17ec3e2aa65b458a7fb243b5806cb12fff44.tar.gz samba-e77c17ec3e2aa65b458a7fb243b5806cb12fff44.tar.bz2 samba-e77c17ec3e2aa65b458a7fb243b5806cb12fff44.zip |
Remove some shadowed definition warnings
Diffstat (limited to 'source3')
-rw-r--r-- | source3/torture/torture.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |