summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/auth/auth.c3
1 files changed, 1 insertions, 2 deletions
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;
}