1
0
mirror of https://github.com/samba-team/samba.git synced 2025-05-28 21:05:48 +03:00

Fix the build of reply_setattrE().

How ever could this compile ?

Guenther
(This used to be commit 02f5f35e5ed3b061cfd020d0b13014c72fced5f4)
This commit is contained in:
Günther Deschner 2008-04-08 21:41:16 +02:00
parent 16fca542d7
commit ee8dffbca6

View File

@ -7029,7 +7029,7 @@ void reply_setattrE(struct smb_request *req)
} else {
if (SMB_VFS_STAT(conn, fsp->fsp_name, &sbuf) == -1) {
status = map_nt_error_from_unix(errno);
reply_nterror(req, status)
reply_nterror(req, status);
END_PROFILE(SMBsetattrE);
return;
}
@ -7038,7 +7038,7 @@ void reply_setattrE(struct smb_request *req)
status = smb_set_file_time(conn, fsp, fsp->fsp_name,
&sbuf, ts, true);
if (!NT_STATUS_IS_OK(status)) {
reply_doserror(req, ERRDOS, ERRnoaccess)
reply_doserror(req, ERRDOS, ERRnoaccess);
END_PROFILE(SMBsetattrE);
return;
}