diff options
author | Tim Potter <tpot@samba.org> | 2002-01-20 22:50:23 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-01-20 22:50:23 +0000 |
commit | 1f670cfb275ee34e66f504cd35b1c790840999bf (patch) | |
tree | 514ac3583c4472490ca4b0a2aa28c5bf01366d22 /source3/auth | |
parent | 03a4ebbfac78bff612b3973c4cc612f0eb95ade6 (diff) | |
download | samba-1f670cfb275ee34e66f504cd35b1c790840999bf.tar.gz samba-1f670cfb275ee34e66f504cd35b1c790840999bf.tar.xz samba-1f670cfb275ee34e66f504cd35b1c790840999bf.zip |
Spelling fixes.
(This used to be commit e67c7c5852624bcdd5c565ea5f00b143aaf7fee4)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/auth/auth.c b/source3/auth/auth.c index 6b68fa631ac..892102a5efe 100644 --- a/source3/auth/auth.c +++ b/source3/auth/auth.c @@ -52,7 +52,7 @@ static const uint8 *get_ntlm_challenge(struct auth_context *auth_context) TALLOC_CTX *mem_ctx; if (auth_context->challenge.length) { - DEBUG(5, ("get_ntlm_challange (auth subsystem): returning previous challenge (normal)\n")); + DEBUG(5, ("get_ntlm_challenge (auth subsystem): returning previous challenge (normal)\n")); return auth_context->challenge.data; } @@ -70,7 +70,7 @@ static const uint8 *get_ntlm_challenge(struct auth_context *auth_context) continue; } - mem_ctx = talloc_init_named("auth_get_challange for module %s", auth_method->name); + mem_ctx = talloc_init_named("auth_get_challenge for module %s", auth_method->name); if (!mem_ctx) { smb_panic("talloc_init_named() failed!"); } @@ -156,10 +156,10 @@ static BOOL check_domain_match(const char *user, const char *domain) * @param user_info Contains the user supplied components, including the passwords. * Must be created with make_user_info() or one of its wrappers. * - * @param auth_info Supplies the challanges and some other data. - * Must be created with make_auth_info(), and the challanges should be - * filled in, either at creation or by calling the challange geneation - * function auth_get_challange(). + * @param auth_info Supplies the challenges and some other data. + * Must be created with make_auth_info(), and the challenges should be + * filled in, either at creation or by calling the challenge geneation + * function auth_get_challenge(). * * @param server_info If successful, contains information about the authenticaion, * including a SAM_ACCOUNT struct describing the user. |