diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-07-08 14:10:30 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-07-08 14:10:30 +0000 |
commit | 04f090c224bb7ac3b53c430a591fce1fc939a81c (patch) | |
tree | 73aeb3f10bb77bbdb3a0bae8e035a205b06e160f /source/rpc_server/srv_pipe.c | |
parent | ebd2f9b07c89cce505e821f1caaa6817bbb26db9 (diff) | |
download | samba-04f090c224bb7ac3b53c430a591fce1fc939a81c.tar.gz samba-04f090c224bb7ac3b53c430a591fce1fc939a81c.tar.xz samba-04f090c224bb7ac3b53c430a591fce1fc939a81c.zip |
This removes unused paramaters from various authtication functions, and should
not change behaviour.
This should make my later diffs smaller, where I actualy start cleaning up this
mess...
Andrew Bartlett
Diffstat (limited to 'source/rpc_server/srv_pipe.c')
-rw-r--r-- | source/rpc_server/srv_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_server/srv_pipe.c b/source/rpc_server/srv_pipe.c index cdf914a164f..cd17de77f39 100644 --- a/source/rpc_server/srv_pipe.c +++ b/source/rpc_server/srv_pipe.c @@ -363,7 +363,7 @@ static BOOL api_pipe_ntlmssp_verify(pipes_struct *p, RPC_AUTH_NTLMSSP_RESP *ntlm become_root(); if(!(p->ntlmssp_auth_validated = pass_check_smb(pipe_user_name, domain, - (uchar*)p->challenge, lm_owf, nt_owf, NULL))) { + (uchar*)p->challenge, lm_owf, nt_owf))) { DEBUG(1,("api_pipe_ntlmssp_verify: User %s\\%s from machine %s \ failed authentication on named pipe %s.\n", domain, pipe_user_name, wks, p->name )); unbecome_root(); |