1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

r12466: r12028@cabra: derrell | 2005-12-24 20:25:38 -0500

parse dates correctly.  w_time and m_time were reversed.
This commit is contained in:
Derrell Lipman 2005-12-25 02:00:21 +00:00 committed by Gerald (Jerry) Carter
parent 040eda6bf0
commit 481abfbab4
2 changed files with 9 additions and 7 deletions

View File

@ -592,18 +592,18 @@ BOOL cli_qpathinfo2(struct cli_state *cli, const char *fname,
if (!rdata || data_len < 22) {
return False;
}
if (c_time) {
*c_time = interpret_long_date(rdata+0);
}
if (a_time) {
*a_time = interpret_long_date(rdata+8);
}
if (m_time) {
*m_time = interpret_long_date(rdata+16);
}
if (w_time) {
*w_time = interpret_long_date(rdata+24);
*w_time = interpret_long_date(rdata+16);
}
if (m_time) {
*m_time = interpret_long_date(rdata+24);
}
if (mode) {
*mode = SVAL(rdata, 32);

View File

@ -1380,8 +1380,10 @@ static BOOL smbc_getatr(SMBCCTX * context, SMBCSRV *srv, char *path,
}
if (!srv->no_pathinfo2 &&
cli_qpathinfo2(targetcli, targetpath, c_time, a_time, m_time, NULL,
size, mode, ino)) return True;
cli_qpathinfo2(targetcli, targetpath,
c_time, a_time, m_time, NULL, size, mode, ino)) {
return True;
}
/* if this is NT then don't bother with the getatr */
if (targetcli->capabilities & CAP_NT_SMBS) {