diff options
author | Shirish Kalele <kalele@samba.org> | 2002-08-12 13:35:17 +0000 |
---|---|---|
committer | Shirish Kalele <kalele@samba.org> | 2002-08-12 13:35:17 +0000 |
commit | 341e3009a094f7248e3cb894586f2a600a27ff34 (patch) | |
tree | 199938ade89f6871287474af4984c98539e3123b /source3 | |
parent | b3d49538fddc7d9f7c973efb9c6fbe774e1faaf2 (diff) | |
download | samba-341e3009a094f7248e3cb894586f2a600a27ff34.tar.gz samba-341e3009a094f7248e3cb894586f2a600a27ff34.tar.xz samba-341e3009a094f7248e3cb894586f2a600a27ff34.zip |
Add RESOLVE_DFSPATH to mkdir operations in HEAD.
(This used to be commit cbb6e2fbdb42964107cf033c787a32cedd46e5d8)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index dc49fe3e2e7..c6a082d7d89 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -2751,6 +2751,8 @@ int reply_mkdir(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, srvstr_pull_buf(inbuf, directory, smb_buf(inbuf) + 1, sizeof(directory), STR_TERMINATE); + RESOLVE_DFSPATH(directory, conn, inbuf, outbuf); + status = mkdir_internal(conn, directory); if (!NT_STATUS_IS_OK(status)) return ERROR_NT(status); |