diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-22 18:37:43 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-22 18:37:43 +0000 |
commit | d38aba33afefc5791c1a672f5786bf2d8da8dda8 (patch) | |
tree | a71714d8db5183376ad82e978606269f97ba7c56 /source3/client | |
parent | a947dff4c001023d0f7c2f6f13c3a4b594c88139 (diff) | |
download | samba-d38aba33afefc5791c1a672f5786bf2d8da8dda8.tar.gz samba-d38aba33afefc5791c1a672f5786bf2d8da8dda8.tar.bz2 samba-d38aba33afefc5791c1a672f5786bf2d8da8dda8.zip |
client.c :
send to \PIPE\ not \PIPE\NETLOGON.
ipc.c :
fstring name not being bzero'd caused problems when calling named_pipe().
(This used to be commit 2393c49b0509b8ce021f0acfba135219cd753cf9)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 6d488bd2f5..344c197cc5 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3547,8 +3547,8 @@ static BOOL cli_lsa_req_chal(void) /* create the request RPC_HDR _after_ the main data: length is now known */ create_rpc_request(call_id, LSA_REQCHAL, param, PTR_DIFF(p, param)); - /* send the data on \PIPE\NETLOGON */ - if (cli_call_api(PIPE_NETLOGON, PTR_DIFF(p, param),0, + /* send the data on \PIPE\ */ + if (cli_call_api("\\PIPE\\", PTR_DIFF(p, param),0, 1024,BUFFER_SIZE, &rprcnt,&rdrcnt, param,NULL, |