diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-21 01:20:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:14 -0500 |
commit | 326f562e72c0776f469a8af93e25a2cc94dff60e (patch) | |
tree | 06c40c98c73aa6916087591094bebe13f7e6fd4d /source4/auth | |
parent | 43afd3fda8c0aba14b2f41778b050c0a93d64253 (diff) | |
download | samba-326f562e72c0776f469a8af93e25a2cc94dff60e.tar.gz samba-326f562e72c0776f469a8af93e25a2cc94dff60e.tar.bz2 samba-326f562e72c0776f469a8af93e25a2cc94dff60e.zip |
r1982: i is not initialised or used
(This used to be commit db4bc88f9aeaa59f08b9b447a8b2256c9c9c5fb0)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/auth.c | 3 |
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; } |