1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

Add RESOLVE_DFSPATH to mkdir operations in HEAD.

(This used to be commit cbb6e2fbdb42964107cf033c787a32cedd46e5d8)
This commit is contained in:
Shirish Kalele 2002-08-12 13:35:17 +00:00
parent b3d49538fd
commit 341e3009a0

View File

@ -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);