1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-15 05:57:49 +03:00

r654: There is no point in having two lines of:

sbuf.st_mtime &= ~1;

So I had one refer to st_ctime.
This commit is contained in:
Richard Sharpe 2004-05-12 07:06:05 +00:00 committed by Gerald (Jerry) Carter
parent ba9809fcd4
commit cf7a64c05d

View File

@ -2400,7 +2400,7 @@ static int call_trans2qfilepathinfo(connection_struct *conn,
if (lp_dos_filetime_resolution(SNUM(conn))) {
c_time &= ~1;
sbuf.st_atime &= ~1;
sbuf.st_mtime &= ~1;
sbuf.st_ctime &= ~1;
sbuf.st_mtime &= ~1;
}