diff options
author | Günther Deschner <gd@samba.org> | 2008-04-08 21:41:16 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-04-08 21:41:16 +0200 |
commit | ee8dffbca635abce6c1c79b81a8dfa624871fda9 (patch) | |
tree | e62e097e84725bc59d4f0a016b5b4f651d248852 | |
parent | 16fca542d7f3b05f3d97cdab34c5f1907bd0a170 (diff) | |
download | samba-ee8dffbca635abce6c1c79b81a8dfa624871fda9.tar.gz samba-ee8dffbca635abce6c1c79b81a8dfa624871fda9.tar.bz2 samba-ee8dffbca635abce6c1c79b81a8dfa624871fda9.zip |
Fix the build of reply_setattrE().
How ever could this compile ?
Guenther
(This used to be commit 02f5f35e5ed3b061cfd020d0b13014c72fced5f4)
-rw-r--r-- | source3/smbd/reply.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index ab77de06f8..2506ff97e9 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -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; } |