s3: smb2: Move from using SBVAL to put NTTIMEs on the wire to put_long_date_timespec.
commitf3fd95f621845c71c6dcf997e162f6b91574a55f
authorJeremy Allison <jra@samba.org>
Wed, 21 May 2014 18:31:44 +0000 (21 11:31 -0700)
committerKarolin Seeger <kseeger@samba.org>
Tue, 27 May 2014 19:07:16 +0000 (27 21:07 +0200)
tree91eb2672aa14164639d08337c431c5e77fa66f47
parentbb0871c3ec44f6fb5fbd01e0f1522dfd7934cfe5
s3: smb2: Move from using SBVAL to put NTTIMEs on the wire to put_long_date_timespec.

put_long_date_timespec() correctly calls round_timespec()
on the time parameters, and is the correct function to
use when writing *any* file-based NTTIME on the wire.

The smb2_close() code being modified already did this by
hand, and so this doesn't change any of the functionality, only
makes the SMB2 code match all of the other server
code in Samba. Move from using NTTIME variables internally
in the server to struct timespec variables, which is
what all the other server code uses. Only map to
NTTIME as the last step of marshalling the output
data.

Not following the put_long_date_timespec()
convention in the SMB2 create code caused the
round_timespec() step to have been missed in
that code - thus bug:

Bug 3124 - xcopy /d with samba shares works not as aspected

https://bugzilla.samba.org/show_bug.cgi?id=3124

which is a regression from a long-ago bug with
SMB1.

Signed-off-by: Jeremy Allison <jra@samba.org>
source3/smbd/smb2_close.c