diff options
author | Jeremy Allison <jra@samba.org> | 2000-10-03 02:12:14 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-10-03 02:12:14 +0000 |
commit | 3ad2ee22bb4ecee24d069bb7efadff18c25044d1 (patch) | |
tree | 833839953637fd990b712717df13efffa5b6ae10 /source3/smbd/reply.c | |
parent | 2679fa315da579fbdc7dd35d3ee1cb364b85a1d9 (diff) | |
download | samba-3ad2ee22bb4ecee24d069bb7efadff18c25044d1.tar.gz samba-3ad2ee22bb4ecee24d069bb7efadff18c25044d1.tar.xz samba-3ad2ee22bb4ecee24d069bb7efadff18c25044d1.zip |
utf-8 and EUC3 patch from Hiroshi Miura Samba User Group Japan staff.
mkdir high bits patch from Robert Dahlem" <Robert.Dahlem@gmx.net>.
jeremy.
(This used to be commit b40191d27180ab1e59935086073c4d312552f717)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 96a43b48c82..b98ae441ac1 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -3099,8 +3099,7 @@ int mkdir_internal(connection_struct *conn, char *inbuf, char *outbuf, pstring d unix_convert(directory,conn,0,&bad_path,NULL); if (check_name(directory, conn)) - ret = conn->vfs_ops.mkdir(dos_to_unix(directory,False), - unix_mode(conn,aDIR,directory)); + ret = vfs_mkdir(conn,directory,unix_mode(conn,aDIR,directory)); if (ret < 0) { |