From 5af35320a92e39b924b0bfebd2c4caae24724231 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 10 Jul 2000 04:57:09 +0000 Subject: Spelling fixes. (This used to be commit c1d242f1dd5b6addbe5d2df22e4759f6682fd9ef) --- source3/smbd/password.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/smbd/password.c') diff --git a/source3/smbd/password.c b/source3/smbd/password.c index 209e4402df..fffddb4610 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -1384,7 +1384,7 @@ BOOL domain_client_validate( char *user, char *domain, { unsigned char local_challenge[8]; unsigned char local_lm_response[24]; - unsigned char local_nt_reponse[24]; + unsigned char local_nt_response[24]; unsigned char trust_passwd[16]; fstring remote_machine; char *p, *pserver; @@ -1422,11 +1422,11 @@ BOOL domain_client_validate( char *user, char *domain, DEBUG(3,("domain_client_validate: User passwords not in encrypted format.\n")); generate_random_buffer( local_challenge, 8, False); SMBencrypt( (uchar *)smb_apasswd, local_challenge, local_lm_response); - SMBNTencrypt((uchar *)smb_ntpasswd, local_challenge, local_nt_reponse); + SMBNTencrypt((uchar *)smb_ntpasswd, local_challenge, local_nt_response); smb_apasslen = 24; smb_ntpasslen = 24; smb_apasswd = (char *)local_lm_response; - smb_ntpasswd = (char *)local_nt_reponse; + smb_ntpasswd = (char *)local_nt_response; } else { /* -- cgit