From c9dca82ed7757f4745edf6ee6048bd94d86c4dbc Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 10 Aug 2009 15:07:53 -0700 Subject: Refactor the use of create_time and change time to go through functions. Will aid in making us pass RAW-SETFILEINFO. Jeremy. --- source3/smbd/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/reply.c') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 3498109f12..de187e902b 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -7793,7 +7793,7 @@ void reply_getattrE(struct smb_request *req) reply_outbuf(req, 11, 0); - create_ts = sbuf.st_ex_btime; + create_ts = get_create_timespec(fsp, fsp->fsp_name); srv_put_dos_date2((char *)req->outbuf, smb_vwv0, create_ts.tv_sec); srv_put_dos_date2((char *)req->outbuf, smb_vwv2, convert_timespec_to_time_t(sbuf.st_ex_atime)); -- cgit