diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-06 07:58:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:33 -0500 |
commit | 439c1524fba3b58abe9e353f9ff2bd7f103f3d12 (patch) | |
tree | 0b824442f7c57ee4a2653fbcbb280987cb582e01 /source4/smb_server/reply.c | |
parent | 4c06ac06a13eaff5b314ad97cce824d615c06f9a (diff) | |
download | samba-439c1524fba3b58abe9e353f9ff2bd7f103f3d12.tar.gz samba-439c1524fba3b58abe9e353f9ff2bd7f103f3d12.tar.bz2 samba-439c1524fba3b58abe9e353f9ff2bd7f103f3d12.zip |
r3573: added trans2open support to smbd and pvfs, and fine-tuned the open->generic ntvfs mapping code.
(This used to be commit ed844192d7f7ed487290f719df65f256a5b0b9bc)
Diffstat (limited to 'source4/smb_server/reply.c')
-rw-r--r-- | source4/smb_server/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smb_server/reply.c b/source4/smb_server/reply.c index b0e5e8a8d8..9b3675aeac 100644 --- a/source4/smb_server/reply.c +++ b/source4/smb_server/reply.c @@ -596,7 +596,7 @@ static void reply_ctemp_send(struct smbsrv_request *req) SSVAL(req->out.vwv, VWV(0), oi->ctemp.out.fnum); /* the returned filename is relative to the directory */ - req_push_str(req, NULL, oi->ctemp.out.name, -1, STR_TERMINATE); + req_push_str(req, NULL, oi->ctemp.out.name, -1, STR_TERMINATE | STR_ASCII); req_send_reply(req); } |