diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-24 08:08:05 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-24 08:08:05 +0000 |
commit | 2565ccf9de9d5e80fdb5bcadbc7130faba386d95 (patch) | |
tree | 5b5846e0b28aa29db5c410336f8e258994d85423 /source/utils/torture.c | |
parent | 9d863fb1681a5b03696552e1d93fe339b4bae455 (diff) | |
download | samba-2565ccf9de9d5e80fdb5bcadbc7130faba386d95.tar.gz samba-2565ccf9de9d5e80fdb5bcadbc7130faba386d95.tar.xz samba-2565ccf9de9d5e80fdb5bcadbc7130faba386d95.zip |
volker was concerned about unique inode numbers and smbsh. This set of
changes uses the unique index number from a SMB_QUERY_FILE_ALL_INFO to
try to provide inode numbers. If it is 0 then use the hash of the
filename as before.
Diffstat (limited to 'source/utils/torture.c')
-rw-r--r-- | source/utils/torture.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source/utils/torture.c b/source/utils/torture.c index 3ef4d5133f7..81fa33fc750 100644 --- a/source/utils/torture.c +++ b/source/utils/torture.c @@ -864,7 +864,8 @@ static void run_trans2test(void) cli_unlink(&cli, fname); fnum = cli_open(&cli, fname, O_RDWR | O_CREAT | O_TRUNC, DENY_NONE); - if (!cli_qfileinfo(&cli, fnum, NULL, &size, &c_time, &a_time, &m_time)) { + if (!cli_qfileinfo(&cli, fnum, NULL, &size, &c_time, &a_time, &m_time, + NULL, NULL)) { printf("ERROR: qfileinfo failed (%s)\n", cli_errstr(&cli)); } cli_close(&cli, fnum); @@ -900,7 +901,7 @@ static void run_trans2test(void) O_RDWR | O_CREAT | O_TRUNC, DENY_NONE); cli_close(&cli, fnum); if (!cli_qpathinfo2(&cli, fname, &c_time, &a_time, &m_time, - &w_time, &size, NULL)) { + &w_time, &size, NULL, NULL)) { printf("ERROR: qpathinfo2 failed (%s)\n", cli_errstr(&cli)); } else { if (w_time < 60*60*24*2) { @@ -919,7 +920,7 @@ static void run_trans2test(void) } sleep(3); if (!cli_qpathinfo2(&cli, "\\trans2\\", &c_time, &a_time, &m_time, - &w_time, &size, NULL)) { + &w_time, &size, NULL, NULL)) { printf("ERROR: qpathinfo2 failed (%s)\n", cli_errstr(&cli)); } @@ -928,7 +929,7 @@ static void run_trans2test(void) cli_write(&cli, fnum, 0, (char *)&fnum, 0, sizeof(fnum)); cli_close(&cli, fnum); if (!cli_qpathinfo2(&cli, "\\trans2\\", &c_time, &a_time, &m_time2, - &w_time, &size, NULL)) { + &w_time, &size, NULL, NULL)) { printf("ERROR: qpathinfo2 failed (%s)\n", cli_errstr(&cli)); } else { if (m_time2 == m_time) |