summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-01-08 13:18:23 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:16:57 -0500
commit21cc3895458100158f329786a89bc2a77fe1e8ce (patch)
tree8f50799e0d13d202a6215c7aa57edabb75b0bd54 /source3/smbd
parentccc54da805983e6ba267a2ec1f50a68e4a9acfec (diff)
downloadsamba-21cc3895458100158f329786a89bc2a77fe1e8ce.tar.gz
samba-21cc3895458100158f329786a89bc2a77fe1e8ce.tar.bz2
samba-21cc3895458100158f329786a89bc2a77fe1e8ce.zip
r20606: bad_path == True has been covered further up in reply_setatr.
I'm checking in micro-steps to make them independently checkable. This code just very severely needs cleanup, but I don't want to break anything. So, be patient with me, please :-) Volker (This used to be commit c16775486baa89901f0d5126cb926c9e5a807743)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/reply.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index 646cc79522..66bbce064f 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -1032,7 +1032,8 @@ int reply_setatr(connection_struct *conn, char *inbuf,char *outbuf, int dum_size
if (!ok) {
END_PROFILE(SMBsetatr);
- return set_bad_path_error(errno, bad_path, outbuf, ERRDOS, ERRnoaccess);
+ return set_bad_path_error(errno, False, outbuf,
+ ERRDOS, ERRnoaccess);
}
outsize = set_message(outbuf,0,0,False);