Commit effc7c04 authored by Richard Sharpe's avatar Richard Sharpe Committed by Gerald (Jerry) Carter
Browse files

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

        sbuf.st_mtime &= ~1;

So I had one refer to st_ctime.
(This used to be commit cf7a64c05dbc281802a2dc97a182b530fb925db9)
parent 327f9b96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}