1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r1982: i is not initialised or used

This commit is contained in:
Andrew Tridgell 2004-08-21 01:20:51 +00:00 committed by Gerald (Jerry) Carter
parent 73e9ee7914
commit db4bc88f9a

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;
}