summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2004-05-12 07:06:05 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:51:33 -0500
commiteffc7c0487da4212003e52aab71d1fb727a5aa77 (patch)
tree2af00f6239a1b01e0974c08b08d08eb9e4b5c092
parent327f9b9636dd468822625103c6feed5fc952cc7b (diff)
downloadsamba-effc7c0487da4212003e52aab71d1fb727a5aa77.tar.gz
samba-effc7c0487da4212003e52aab71d1fb727a5aa77.tar.bz2
samba-effc7c0487da4212003e52aab71d1fb727a5aa77.zip
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)
-rw-r--r--source3/smbd/trans2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index a0e00cfcfe..f221262282 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -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;
}