From 326f562e72c0776f469a8af93e25a2cc94dff60e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 21 Aug 2004 01:20:51 +0000 Subject: r1982: i is not initialised or used (This used to be commit db4bc88f9aeaa59f08b9b447a8b2256c9c9c5fb0) --- source4/auth/auth.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4/auth') diff --git a/source4/auth/auth.c b/source4/auth/auth.c index 206f431a05..0697cee1ac 100644 --- a/source4/auth/auth.c +++ b/source4/auth/auth.c @@ -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; } -- cgit