diff options
author | Tim Potter <tpot@samba.org> | 2001-11-26 04:05:28 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-11-26 04:05:28 +0000 |
commit | 178f6a64b26d828db6b516392d7072e9c29f6233 (patch) | |
tree | dc7f83d479cf9994e8c751f4bd475174071cac38 /source3/rpc_server | |
parent | abe6aff924ed56a36ba6390d692446019bef0f21 (diff) | |
download | samba-178f6a64b26d828db6b516392d7072e9c29f6233.tar.gz samba-178f6a64b26d828db6b516392d7072e9c29f6233.tar.bz2 samba-178f6a64b26d828db6b516392d7072e9c29f6233.zip |
challange -> challenge
(This used to be commit d6318add27f6bca5be00cbedf2226b642341297a)
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_netlog_nt.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source3/rpc_server/srv_netlog_nt.c b/source3/rpc_server/srv_netlog_nt.c index e57c445bb5..5f85d4db9c 100644 --- a/source3/rpc_server/srv_netlog_nt.c +++ b/source3/rpc_server/srv_netlog_nt.c @@ -569,7 +569,7 @@ NTSTATUS _net_sam_logon(pipes_struct *p, NET_Q_SAM_LOGON *q_u, NET_R_SAM_LOGON * { auth_authsupplied_info *auth_info = NULL; make_auth_info_fixed(&auth_info, ctr->auth.id2.lm_chal); - /* Standard challange/response authenticaion */ + /* Standard challenge/response authenticaion */ make_user_info_netlogon_network(&user_info, nt_username, nt_domain, nt_workstation, @@ -584,9 +584,10 @@ NTSTATUS _net_sam_logon(pipes_struct *p, NET_Q_SAM_LOGON *q_u, NET_R_SAM_LOGON * break; } case INTERACTIVE_LOGON_TYPE: - /* 'Interactive' autheticaion, supplies the password in its MD4 form, encrypted - with the session key. We will convert this to challange/responce for the - auth subsystem to chew on */ + /* 'Interactive' autheticaion, supplies the password in its + MD4 form, encrypted with the session key. We will + convert this to chellange/responce for the auth + subsystem to chew on */ { auth_authsupplied_info *auth_info = NULL; DATA_BLOB chal; @@ -594,7 +595,7 @@ NTSTATUS _net_sam_logon(pipes_struct *p, NET_Q_SAM_LOGON *q_u, NET_R_SAM_LOGON * return NT_STATUS_NO_MEMORY; } - chal = auth_get_challange(auth_info); + chal = auth_get_challenge(auth_info); make_user_info_netlogon_interactive(&user_info, nt_username, nt_domain, |