diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-11-20 16:28:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:31 -0500 |
commit | f2dedc629ca0d15a59de38812abb0b290fed0a37 (patch) | |
tree | 1ce797981364301283c952612d7578fe7bd918dd /source4/librpc/rpc/dcerpc_util.c | |
parent | 218ea5a5c77aab2d572b400c8605e0e67ab741e0 (diff) | |
download | samba-f2dedc629ca0d15a59de38812abb0b290fed0a37.tar.gz samba-f2dedc629ca0d15a59de38812abb0b290fed0a37.tar.bz2 samba-f2dedc629ca0d15a59de38812abb0b290fed0a37.zip |
r11809: Make dcerpc_bind_auth async.
This also removes dcerpc_bind_auth_password, the only user of
dcerpc_bind_auth. And this was not only passwords anyway.
Andrew Bartlett, as usual: Please take a close look.
Thanks,
Volker
(This used to be commit 2ff2dae3d035af6cb0c131573cfd983fc9a58eee)
Diffstat (limited to 'source4/librpc/rpc/dcerpc_util.c')
-rw-r--r-- | source4/librpc/rpc/dcerpc_util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index ef510f4afc..400a8b5e21 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -985,9 +985,9 @@ NTSTATUS dcerpc_pipe_auth(struct dcerpc_pipe *p, auth_type = DCERPC_AUTH_TYPE_NTLMSSP; } - status = dcerpc_bind_auth_password(p, pipe_uuid, pipe_version, - credentials, auth_type, - binding->authservice); + status = dcerpc_bind_auth(p, pipe_uuid, pipe_version, + credentials, auth_type, + binding->authservice); } else { status = dcerpc_bind_auth_none(p, pipe_uuid, pipe_version); } |