summaryrefslogtreecommitdiffstats
path: root/source/smbd/trans2.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1997-09-11 20:17:32 +0000
committerJeremy Allison <jra@samba.org>1997-09-11 20:17:32 +0000
commit9196255022ae8c51b527412747b324819bea2c13 (patch)
tree837c3380d2b8624b3145a87a94161623a4ee2d82 /source/smbd/trans2.c
parentc30f6a74d0e6c256b1d46b28c1f31f1c1f3dd856 (diff)
downloadsamba-9196255022ae8c51b527412747b324819bea2c13.tar.gz
samba-9196255022ae8c51b527412747b324819bea2c13.tar.xz
samba-9196255022ae8c51b527412747b324819bea2c13.zip
charcnv.c client.c clitar.c kanji.c kanji.h loadparm.c
mangle.c smb.h util.c: Big merge to allow KANJI support to be in the main binary without explicitly compiling with it. locking.c: Fix for smbstatus not being able to read files. namepacket.c: Removed unneccesary debug statement. trans2.c: Added Luke's proposed fix (ifdefed out until further testing). nmblookup.c: Fixed bug where query fails and status is done on bogus IP. Jeremy (jallison@whistle.com)
Diffstat (limited to 'source/smbd/trans2.c')
-rw-r--r--source/smbd/trans2.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/smbd/trans2.c b/source/smbd/trans2.c
index 19c1158658c..c8e726d36e8 100644
--- a/source/smbd/trans2.c
+++ b/source/smbd/trans2.c
@@ -1347,6 +1347,14 @@ static int call_trans2setfilepathinfo(char *inbuf, char *outbuf, int length,
tvs.modtime=MAX(interpret_long_date(pdata+16),
interpret_long_date(pdata+24));
+#if 0 /* Needs more testing... */
+ /* Test from Luke to prevent Win95 from
+ setting incorrect values here.
+ */
+ if (tvs.actime < tvs.modtime)
+ return(ERROR(ERRDOS,ERRnoaccess));
+#endif /* Needs more testing... */
+
/* attributes */
mode = IVAL(pdata,32);
break;