1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

r1982: i is not initialised or used

(This used to be commit db4bc88f9a)
This commit is contained in:
Andrew Tridgell
2004-08-21 01:20:51 +00:00
committed by Gerald (Jerry) Carter
parent 43afd3fda8
commit 326f562e72

View File

@ -307,7 +307,6 @@ static NTSTATUS make_auth_context_text_list(struct auth_context **auth_context,
{
struct auth_methods *list = NULL;
struct auth_methods *t = NULL;
int i;
NTSTATUS nt_status;
if (!text_list) {
@ -338,7 +337,7 @@ static NTSTATUS make_auth_context_text_list(struct auth_context **auth_context,
ops = auth_backend_byname(module_name);
if (!ops) {
DEBUG(5,("make_auth_context_text_list: Found auth method %s (at pos %d)\n", *text_list, i));
DEBUG(5,("make_auth_context_text_list: Found auth method %s\n", *text_list));
SAFE_FREE(module_name);
break;
}